123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455 |
- {
- "version": 3,
- "targets": {
- "net8.0": {
- "Avalonia/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia.BuildServices": "0.0.29",
- "Avalonia.Remote.Protocol": "11.0.10",
- "MicroCom.Runtime": "0.11.0",
- "System.ComponentModel.Annotations": "4.5.0"
- },
- "compile": {
- "ref/net6.0/Avalonia.Base.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Controls.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.DesignerSupport.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Dialogs.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Markup.Xaml.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Markup.dll": {
- "related": ".Xaml.xml;.xml"
- },
- "ref/net6.0/Avalonia.Metal.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.MicroCom.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.OpenGL.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.dll": {
- "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Base.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Controls.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.DesignerSupport.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Dialogs.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Markup.Xaml.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Markup.dll": {
- "related": ".Xaml.xml;.xml"
- },
- "lib/net6.0/Avalonia.Metal.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.MicroCom.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.OpenGL.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.dll": {
- "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
- }
- },
- "build": {
- "buildTransitive/Avalonia.props": {},
- "buildTransitive/Avalonia.targets": {}
- }
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win-arm64/native/av_libglesv2.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/av_libglesv2.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/av_libglesv2.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Avalonia.BuildServices/0.0.29": {
- "type": "package",
- "build": {
- "buildTransitive/Avalonia.BuildServices.targets": {}
- }
- },
- "Avalonia.Controls.ColorPicker/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.Remote.Protocol": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Controls.DataGrid/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.Remote.Protocol": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Desktop/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.Native": "11.0.10",
- "Avalonia.Skia": "11.0.10",
- "Avalonia.Win32": "11.0.10",
- "Avalonia.X11": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Diagnostics/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.Controls.ColorPicker": "11.0.10",
- "Avalonia.Controls.DataGrid": "11.0.10",
- "Avalonia.Themes.Simple": "11.0.10",
- "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Fonts.Inter/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Fonts.Inter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Fonts.Inter.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.FreeDesktop/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Tmds.DBus.Protocol": "0.15.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Native/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Native.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Native.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/osx/native/libAvaloniaNative.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "Avalonia.Remote.Protocol/11.0.10": {
- "type": "package",
- "compile": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Skia/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "HarfBuzzSharp": "7.3.0",
- "HarfBuzzSharp.NativeAssets.Linux": "7.3.0",
- "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0",
- "SkiaSharp": "2.88.7",
- "SkiaSharp.NativeAssets.Linux": "2.88.7",
- "SkiaSharp.NativeAssets.WebAssembly": "2.88.7"
- },
- "compile": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Themes.Fluent/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Themes.Simple/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Win32/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
- "System.Numerics.Vectors": "4.5.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.X11/11.0.10": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.10",
- "Avalonia.FreeDesktop": "11.0.10",
- "Avalonia.Skia": "11.0.10"
- },
- "compile": {
- "lib/net6.0/Avalonia.X11.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.X11.dll": {
- "related": ".xml"
- }
- }
- },
- "HarfBuzzSharp/7.3.0": {
- "type": "package",
- "dependencies": {
- "HarfBuzzSharp.NativeAssets.Win32": "7.3.0",
- "HarfBuzzSharp.NativeAssets.macOS": "7.3.0"
- },
- "compile": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
- "type": "package",
- "dependencies": {
- "HarfBuzzSharp": "7.3.0"
- },
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/linux-arm/native/libHarfBuzzSharp.so": {
- "assetType": "native",
- "rid": "linux-arm"
- },
- "runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
- "assetType": "native",
- "rid": "linux-arm64"
- },
- "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
- "assetType": "native",
- "rid": "linux-musl-x64"
- },
- "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
- "assetType": "native",
- "rid": "linux-x64"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/osx/native/libHarfBuzzSharp.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- },
- "build": {
- "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {},
- "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {}
- }
- },
- "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/libHarfBuzzSharp.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/libHarfBuzzSharp.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "MicroCom.Runtime/0.11.0": {
- "type": "package",
- "compile": {
- "lib/net5.0/MicroCom.Runtime.dll": {}
- },
- "runtime": {
- "lib/net5.0/MicroCom.Runtime.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.Memory": "4.5.4",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.5.1",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
- "Microsoft.CodeAnalysis.Common": "[3.8.0]",
- "Microsoft.CodeAnalysis.Scripting.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/Microsoft.CSharp.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {}
- }
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "SkiaSharp/2.88.7": {
- "type": "package",
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "2.88.7",
- "SkiaSharp.NativeAssets.macOS": "2.88.7"
- },
- "compile": {
- "lib/net6.0/SkiaSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/SkiaSharp.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "SkiaSharp.NativeAssets.Linux/2.88.7": {
- "type": "package",
- "dependencies": {
- "SkiaSharp": "2.88.7"
- },
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/linux-arm/native/libSkiaSharp.so": {
- "assetType": "native",
- "rid": "linux-arm"
- },
- "runtimes/linux-arm64/native/libSkiaSharp.so": {
- "assetType": "native",
- "rid": "linux-arm64"
- },
- "runtimes/linux-musl-x64/native/libSkiaSharp.so": {
- "assetType": "native",
- "rid": "linux-musl-x64"
- },
- "runtimes/linux-x64/native/libSkiaSharp.so": {
- "assetType": "native",
- "rid": "linux-x64"
- }
- }
- },
- "SkiaSharp.NativeAssets.macOS/2.88.7": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.7": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- },
- "build": {
- "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props": {},
- "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets": {}
- }
- },
- "SkiaSharp.NativeAssets.Win32/2.88.7": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Immutable/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- }
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.Pipelines/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Metadata/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/_._": {}
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "System.Runtime.CompilerServices.Unsafe": "4.5.2"
- },
- "compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "type": "package",
- "dependencies": {
- "System.IO.Pipelines": "6.0.0"
- },
- "compile": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {}
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Avalonia/11.0.10": {
- "sha512": "EH1FyD1SA7G/TfLmb7JKQlZiOBqr6VzttJMtA5Hnc/c1623zJej0PRuQlqn8Ad6qWKorrKEypBGA9Gye3uWDrA==",
- "type": "package",
- "path": "avalonia/11.0.10",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Avalonia.Analyzers.dll",
- "analyzers/dotnet/cs/Avalonia.Generators.dll",
- "avalonia.11.0.10.nupkg.sha512",
- "avalonia.nuspec",
- "build/Avalonia.Generators.props",
- "build/Avalonia.props",
- "build/Avalonia.targets",
- "build/AvaloniaBuildTasks.props",
- "build/AvaloniaBuildTasks.targets",
- "build/AvaloniaItemSchema.xaml",
- "build/AvaloniaPrivateApis.targets",
- "build/AvaloniaVersion.props",
- "buildTransitive/Avalonia.Generators.props",
- "buildTransitive/Avalonia.props",
- "buildTransitive/Avalonia.targets",
- "buildTransitive/AvaloniaBuildTasks.props",
- "buildTransitive/AvaloniaBuildTasks.targets",
- "buildTransitive/AvaloniaItemSchema.xaml",
- "buildTransitive/AvaloniaPrivateApis.targets",
- "lib/net461/Avalonia.Base.dll",
- "lib/net461/Avalonia.Base.xml",
- "lib/net461/Avalonia.Controls.dll",
- "lib/net461/Avalonia.Controls.xml",
- "lib/net461/Avalonia.DesignerSupport.dll",
- "lib/net461/Avalonia.DesignerSupport.xml",
- "lib/net461/Avalonia.Dialogs.dll",
- "lib/net461/Avalonia.Dialogs.xml",
- "lib/net461/Avalonia.Markup.Xaml.dll",
- "lib/net461/Avalonia.Markup.Xaml.xml",
- "lib/net461/Avalonia.Markup.dll",
- "lib/net461/Avalonia.Markup.xml",
- "lib/net461/Avalonia.Metal.dll",
- "lib/net461/Avalonia.Metal.xml",
- "lib/net461/Avalonia.MicroCom.dll",
- "lib/net461/Avalonia.MicroCom.xml",
- "lib/net461/Avalonia.OpenGL.dll",
- "lib/net461/Avalonia.OpenGL.xml",
- "lib/net461/Avalonia.dll",
- "lib/net461/Avalonia.xml",
- "lib/net6.0/Avalonia.Base.dll",
- "lib/net6.0/Avalonia.Base.xml",
- "lib/net6.0/Avalonia.Controls.dll",
- "lib/net6.0/Avalonia.Controls.xml",
- "lib/net6.0/Avalonia.DesignerSupport.dll",
- "lib/net6.0/Avalonia.DesignerSupport.xml",
- "lib/net6.0/Avalonia.Dialogs.dll",
- "lib/net6.0/Avalonia.Dialogs.xml",
- "lib/net6.0/Avalonia.Markup.Xaml.dll",
- "lib/net6.0/Avalonia.Markup.Xaml.xml",
- "lib/net6.0/Avalonia.Markup.dll",
- "lib/net6.0/Avalonia.Markup.xml",
- "lib/net6.0/Avalonia.Metal.dll",
- "lib/net6.0/Avalonia.Metal.xml",
- "lib/net6.0/Avalonia.MicroCom.dll",
- "lib/net6.0/Avalonia.MicroCom.xml",
- "lib/net6.0/Avalonia.OpenGL.dll",
- "lib/net6.0/Avalonia.OpenGL.xml",
- "lib/net6.0/Avalonia.dll",
- "lib/net6.0/Avalonia.xml",
- "lib/netcoreapp2.0/Avalonia.Base.dll",
- "lib/netcoreapp2.0/Avalonia.Base.xml",
- "lib/netcoreapp2.0/Avalonia.Controls.dll",
- "lib/netcoreapp2.0/Avalonia.Controls.xml",
- "lib/netcoreapp2.0/Avalonia.DesignerSupport.dll",
- "lib/netcoreapp2.0/Avalonia.DesignerSupport.xml",
- "lib/netcoreapp2.0/Avalonia.Dialogs.dll",
- "lib/netcoreapp2.0/Avalonia.Dialogs.xml",
- "lib/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
- "lib/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
- "lib/netcoreapp2.0/Avalonia.Markup.dll",
- "lib/netcoreapp2.0/Avalonia.Markup.xml",
- "lib/netcoreapp2.0/Avalonia.Metal.dll",
- "lib/netcoreapp2.0/Avalonia.Metal.xml",
- "lib/netcoreapp2.0/Avalonia.MicroCom.dll",
- "lib/netcoreapp2.0/Avalonia.MicroCom.xml",
- "lib/netcoreapp2.0/Avalonia.OpenGL.dll",
- "lib/netcoreapp2.0/Avalonia.OpenGL.xml",
- "lib/netcoreapp2.0/Avalonia.dll",
- "lib/netcoreapp2.0/Avalonia.xml",
- "lib/netstandard2.0/Avalonia.Base.dll",
- "lib/netstandard2.0/Avalonia.Base.xml",
- "lib/netstandard2.0/Avalonia.Controls.dll",
- "lib/netstandard2.0/Avalonia.Controls.xml",
- "lib/netstandard2.0/Avalonia.DesignerSupport.dll",
- "lib/netstandard2.0/Avalonia.DesignerSupport.xml",
- "lib/netstandard2.0/Avalonia.Dialogs.dll",
- "lib/netstandard2.0/Avalonia.Dialogs.xml",
- "lib/netstandard2.0/Avalonia.Markup.Xaml.dll",
- "lib/netstandard2.0/Avalonia.Markup.Xaml.xml",
- "lib/netstandard2.0/Avalonia.Markup.dll",
- "lib/netstandard2.0/Avalonia.Markup.xml",
- "lib/netstandard2.0/Avalonia.Metal.dll",
- "lib/netstandard2.0/Avalonia.Metal.xml",
- "lib/netstandard2.0/Avalonia.MicroCom.dll",
- "lib/netstandard2.0/Avalonia.MicroCom.xml",
- "lib/netstandard2.0/Avalonia.OpenGL.dll",
- "lib/netstandard2.0/Avalonia.OpenGL.xml",
- "lib/netstandard2.0/Avalonia.dll",
- "lib/netstandard2.0/Avalonia.xml",
- "ref/net461/Avalonia.Base.dll",
- "ref/net461/Avalonia.Base.xml",
- "ref/net461/Avalonia.Controls.dll",
- "ref/net461/Avalonia.Controls.xml",
- "ref/net461/Avalonia.DesignerSupport.dll",
- "ref/net461/Avalonia.DesignerSupport.xml",
- "ref/net461/Avalonia.Dialogs.dll",
- "ref/net461/Avalonia.Dialogs.xml",
- "ref/net461/Avalonia.Markup.Xaml.dll",
- "ref/net461/Avalonia.Markup.Xaml.xml",
- "ref/net461/Avalonia.Markup.dll",
- "ref/net461/Avalonia.Markup.xml",
- "ref/net461/Avalonia.Metal.dll",
- "ref/net461/Avalonia.Metal.xml",
- "ref/net461/Avalonia.MicroCom.dll",
- "ref/net461/Avalonia.MicroCom.xml",
- "ref/net461/Avalonia.OpenGL.dll",
- "ref/net461/Avalonia.OpenGL.xml",
- "ref/net461/Avalonia.dll",
- "ref/net461/Avalonia.xml",
- "ref/net6.0/Avalonia.Base.dll",
- "ref/net6.0/Avalonia.Base.xml",
- "ref/net6.0/Avalonia.Controls.dll",
- "ref/net6.0/Avalonia.Controls.xml",
- "ref/net6.0/Avalonia.DesignerSupport.dll",
- "ref/net6.0/Avalonia.DesignerSupport.xml",
- "ref/net6.0/Avalonia.Dialogs.dll",
- "ref/net6.0/Avalonia.Dialogs.xml",
- "ref/net6.0/Avalonia.Markup.Xaml.dll",
- "ref/net6.0/Avalonia.Markup.Xaml.xml",
- "ref/net6.0/Avalonia.Markup.dll",
- "ref/net6.0/Avalonia.Markup.xml",
- "ref/net6.0/Avalonia.Metal.dll",
- "ref/net6.0/Avalonia.Metal.xml",
- "ref/net6.0/Avalonia.MicroCom.dll",
- "ref/net6.0/Avalonia.MicroCom.xml",
- "ref/net6.0/Avalonia.OpenGL.dll",
- "ref/net6.0/Avalonia.OpenGL.xml",
- "ref/net6.0/Avalonia.dll",
- "ref/net6.0/Avalonia.xml",
- "ref/netcoreapp2.0/Avalonia.Base.dll",
- "ref/netcoreapp2.0/Avalonia.Base.xml",
- "ref/netcoreapp2.0/Avalonia.Controls.dll",
- "ref/netcoreapp2.0/Avalonia.Controls.xml",
- "ref/netcoreapp2.0/Avalonia.DesignerSupport.dll",
- "ref/netcoreapp2.0/Avalonia.DesignerSupport.xml",
- "ref/netcoreapp2.0/Avalonia.Dialogs.dll",
- "ref/netcoreapp2.0/Avalonia.Dialogs.xml",
- "ref/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
- "ref/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
- "ref/netcoreapp2.0/Avalonia.Markup.dll",
- "ref/netcoreapp2.0/Avalonia.Markup.xml",
- "ref/netcoreapp2.0/Avalonia.Metal.dll",
- "ref/netcoreapp2.0/Avalonia.Metal.xml",
- "ref/netcoreapp2.0/Avalonia.MicroCom.dll",
- "ref/netcoreapp2.0/Avalonia.MicroCom.xml",
- "ref/netcoreapp2.0/Avalonia.OpenGL.dll",
- "ref/netcoreapp2.0/Avalonia.OpenGL.xml",
- "ref/netcoreapp2.0/Avalonia.dll",
- "ref/netcoreapp2.0/Avalonia.xml",
- "ref/netstandard2.0/Avalonia.Base.dll",
- "ref/netstandard2.0/Avalonia.Base.xml",
- "ref/netstandard2.0/Avalonia.Controls.dll",
- "ref/netstandard2.0/Avalonia.Controls.xml",
- "ref/netstandard2.0/Avalonia.DesignerSupport.dll",
- "ref/netstandard2.0/Avalonia.DesignerSupport.xml",
- "ref/netstandard2.0/Avalonia.Dialogs.dll",
- "ref/netstandard2.0/Avalonia.Dialogs.xml",
- "ref/netstandard2.0/Avalonia.Markup.Xaml.dll",
- "ref/netstandard2.0/Avalonia.Markup.Xaml.xml",
- "ref/netstandard2.0/Avalonia.Markup.dll",
- "ref/netstandard2.0/Avalonia.Markup.xml",
- "ref/netstandard2.0/Avalonia.Metal.dll",
- "ref/netstandard2.0/Avalonia.Metal.xml",
- "ref/netstandard2.0/Avalonia.MicroCom.dll",
- "ref/netstandard2.0/Avalonia.MicroCom.xml",
- "ref/netstandard2.0/Avalonia.OpenGL.dll",
- "ref/netstandard2.0/Avalonia.OpenGL.xml",
- "ref/netstandard2.0/Avalonia.dll",
- "ref/netstandard2.0/Avalonia.xml",
- "tools/net461/designer/Avalonia.Designer.HostApp.exe",
- "tools/netcoreapp2.0/designer/Avalonia.Designer.HostApp.dll",
- "tools/netstandard2.0/Avalonia.Build.Tasks.dll"
- ]
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "sha512": "Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
- "type": "package",
- "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.txt",
- "avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512",
- "avalonia.angle.windows.natives.nuspec",
- "runtimes/win-arm64/native/av_libglesv2.dll",
- "runtimes/win-x64/native/av_libglesv2.dll",
- "runtimes/win-x86/native/av_libglesv2.dll"
- ]
- },
- "Avalonia.BuildServices/0.0.29": {
- "sha512": "U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
- "type": "package",
- "path": "avalonia.buildservices/0.0.29",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "avalonia.buildservices.0.0.29.nupkg.sha512",
- "avalonia.buildservices.nuspec",
- "build/Avalonia.BuildServices.targets",
- "buildTransitive/Avalonia.BuildServices.targets",
- "tools/netstandard2.0/Avalonia.BuildServices.Collector.dll",
- "tools/netstandard2.0/Avalonia.BuildServices.dll",
- "tools/netstandard2.0/runtimeconfig.json"
- ]
- },
- "Avalonia.Controls.ColorPicker/11.0.10": {
- "sha512": "KQEgtJcqi94ZwEA1zDJGV83OzXmAfdo2lAC8w8Fn9ftc0qUrlIoVYxujVpcABy5D0Kj5+h9/57O4fgOTaA70jg==",
- "type": "package",
- "path": "avalonia.controls.colorpicker/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.controls.colorpicker.11.0.10.nupkg.sha512",
- "avalonia.controls.colorpicker.nuspec",
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll",
- "lib/net6.0/Avalonia.Controls.ColorPicker.xml",
- "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll",
- "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml"
- ]
- },
- "Avalonia.Controls.DataGrid/11.0.10": {
- "sha512": "a8es+nGJvXK+rh76iFRkp7UHPvaN+WeMyH7S746r25FnrBYLkvtpEjGGKRWTFX+eO2cFcDh1qHJa63aaElivww==",
- "type": "package",
- "path": "avalonia.controls.datagrid/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.controls.datagrid.11.0.10.nupkg.sha512",
- "avalonia.controls.datagrid.nuspec",
- "lib/net6.0/Avalonia.Controls.DataGrid.dll",
- "lib/net6.0/Avalonia.Controls.DataGrid.xml",
- "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll",
- "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml"
- ]
- },
- "Avalonia.Desktop/11.0.10": {
- "sha512": "jPflQRB94sr3D7tgcUuSHnvK212ZtoM2oBZVQoP/musPWiu56LZ+o7+bAt8TMGhkUBMAylZ5u+tMGCe7EUwbEA==",
- "type": "package",
- "path": "avalonia.desktop/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.desktop.11.0.10.nupkg.sha512",
- "avalonia.desktop.nuspec",
- "lib/net6.0/Avalonia.Desktop.dll",
- "lib/net6.0/Avalonia.Desktop.xml",
- "lib/netstandard2.0/Avalonia.Desktop.dll",
- "lib/netstandard2.0/Avalonia.Desktop.xml"
- ]
- },
- "Avalonia.Diagnostics/11.0.10": {
- "sha512": "FvGUd1W0P4oCKrDbxs000EGPzmzedQaMyrSH3+yhg3vyuF9/gLF/GeO7La7567GeihdPC8HVf1YjGe1id8b9kA==",
- "type": "package",
- "path": "avalonia.diagnostics/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.diagnostics.11.0.10.nupkg.sha512",
- "avalonia.diagnostics.nuspec",
- "lib/net6.0/Avalonia.Diagnostics.dll",
- "lib/net6.0/Avalonia.Diagnostics.xml",
- "lib/netstandard2.0/Avalonia.Diagnostics.dll",
- "lib/netstandard2.0/Avalonia.Diagnostics.xml"
- ]
- },
- "Avalonia.Fonts.Inter/11.0.10": {
- "sha512": "4hVv6u5o8NxfPv2pl1Mg0VTYzxHkc85Wnye3sQJCQtbrd8s9v3DSEYK68zT4wBFlCtc4JHUP85PfyZuoTkf08A==",
- "type": "package",
- "path": "avalonia.fonts.inter/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.fonts.inter.11.0.10.nupkg.sha512",
- "avalonia.fonts.inter.nuspec",
- "lib/net6.0/Avalonia.Fonts.Inter.dll",
- "lib/net6.0/Avalonia.Fonts.Inter.xml",
- "lib/netstandard2.0/Avalonia.Fonts.Inter.dll",
- "lib/netstandard2.0/Avalonia.Fonts.Inter.xml"
- ]
- },
- "Avalonia.FreeDesktop/11.0.10": {
- "sha512": "QLVn1pjCe5ez4cH5B+NmhT61xK502mjxPxkswIbag5FB45tuNOF5zRszH+dN81rNw+VSf/J6PVXdmHz/FojyDw==",
- "type": "package",
- "path": "avalonia.freedesktop/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.freedesktop.11.0.10.nupkg.sha512",
- "avalonia.freedesktop.nuspec",
- "lib/net6.0/Avalonia.FreeDesktop.dll",
- "lib/net6.0/Avalonia.FreeDesktop.xml",
- "lib/netstandard2.0/Avalonia.FreeDesktop.dll",
- "lib/netstandard2.0/Avalonia.FreeDesktop.xml"
- ]
- },
- "Avalonia.Native/11.0.10": {
- "sha512": "eJUPh4VOBomF36DzJQ+M+T1lVBVhpK3Ryx3xNnhVvYcW3dPNgugXApSbxulSipWnMfJh4DAKQD2Mt3ahy3Tp8Q==",
- "type": "package",
- "path": "avalonia.native/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.native.11.0.10.nupkg.sha512",
- "avalonia.native.nuspec",
- "lib/net6.0/Avalonia.Native.dll",
- "lib/net6.0/Avalonia.Native.xml",
- "lib/netstandard2.0/Avalonia.Native.dll",
- "lib/netstandard2.0/Avalonia.Native.xml",
- "runtimes/osx/native/libAvaloniaNative.dylib"
- ]
- },
- "Avalonia.Remote.Protocol/11.0.10": {
- "sha512": "4/zXSx7P2+4g7nIkSd8aIfEfRnvHjpeSEBjJznzE5iJBYO98B78wDPWEkyN8sQBJnLghaNKKsGCApx3g5R0Gsg==",
- "type": "package",
- "path": "avalonia.remote.protocol/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.remote.protocol.11.0.10.nupkg.sha512",
- "avalonia.remote.protocol.nuspec",
- "lib/net6.0/Avalonia.Remote.Protocol.dll",
- "lib/net6.0/Avalonia.Remote.Protocol.xml",
- "lib/netstandard2.0/Avalonia.Remote.Protocol.dll",
- "lib/netstandard2.0/Avalonia.Remote.Protocol.xml"
- ]
- },
- "Avalonia.Skia/11.0.10": {
- "sha512": "0rDySePqUkg6cMBZEXp+5P04XgyIXOcqhsCaWhrwFAqxcp5qKjILSCNvt0pden3TqCRjuNuGaWGV+qyk58l9vA==",
- "type": "package",
- "path": "avalonia.skia/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.skia.11.0.10.nupkg.sha512",
- "avalonia.skia.nuspec",
- "lib/net6.0/Avalonia.Skia.dll",
- "lib/net6.0/Avalonia.Skia.xml",
- "lib/netstandard2.0/Avalonia.Skia.dll",
- "lib/netstandard2.0/Avalonia.Skia.xml"
- ]
- },
- "Avalonia.Themes.Fluent/11.0.10": {
- "sha512": "V7xu7ddtUFwYHb+u3S4he2/PGGUHkeTI66j3PyGTZi0Uz8Ma4prb/Lgz7Qd/vpO4lukxw1G4DmxB1tClNS9qUw==",
- "type": "package",
- "path": "avalonia.themes.fluent/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.themes.fluent.11.0.10.nupkg.sha512",
- "avalonia.themes.fluent.nuspec",
- "lib/net6.0/Avalonia.Themes.Fluent.dll",
- "lib/net6.0/Avalonia.Themes.Fluent.xml",
- "lib/netstandard2.0/Avalonia.Themes.Fluent.dll",
- "lib/netstandard2.0/Avalonia.Themes.Fluent.xml"
- ]
- },
- "Avalonia.Themes.Simple/11.0.10": {
- "sha512": "3MGE3iHT61dvnRV5zuHXT9qRv2Kpbq8ft3JbEdw6NyEKPwd922ASLqdl64HLWx3ZqUjdZabkmZofkqVhiwpZww==",
- "type": "package",
- "path": "avalonia.themes.simple/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.themes.simple.11.0.10.nupkg.sha512",
- "avalonia.themes.simple.nuspec",
- "lib/net6.0/Avalonia.Themes.Simple.dll",
- "lib/net6.0/Avalonia.Themes.Simple.xml",
- "lib/netstandard2.0/Avalonia.Themes.Simple.dll",
- "lib/netstandard2.0/Avalonia.Themes.Simple.xml"
- ]
- },
- "Avalonia.Win32/11.0.10": {
- "sha512": "XD4fiRpiLHB6Q8e9Vevj42rYQvdnrqs56Jwu9T4UaClcuk578fUH1LP/vl9q/n8LrEUyng01Q7vtpp5sgwsXDw==",
- "type": "package",
- "path": "avalonia.win32/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.win32.11.0.10.nupkg.sha512",
- "avalonia.win32.nuspec",
- "lib/net6.0/Avalonia.Win32.dll",
- "lib/net6.0/Avalonia.Win32.xml",
- "lib/netstandard2.0/Avalonia.Win32.dll",
- "lib/netstandard2.0/Avalonia.Win32.xml"
- ]
- },
- "Avalonia.X11/11.0.10": {
- "sha512": "WUhPBIYqjJdBf1TgUARYNyH1clntZ435eQzR+db4fxrg4OemePX6nJTp1Lh7G/hTVEvRgWCoYFccqm/6vsfJQQ==",
- "type": "package",
- "path": "avalonia.x11/11.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.x11.11.0.10.nupkg.sha512",
- "avalonia.x11.nuspec",
- "lib/net6.0/Avalonia.X11.dll",
- "lib/net6.0/Avalonia.X11.xml",
- "lib/netstandard2.0/Avalonia.X11.dll",
- "lib/netstandard2.0/Avalonia.X11.xml"
- ]
- },
- "HarfBuzzSharp/7.3.0": {
- "sha512": "OrQLaxtZMIeS2yHSUtsKzeSdk9CPaCpyJ/JCs+wLfRGatjE8MLUS6LGj6vdbGRxqRavcXs79C9O3oWe6FJR0JQ==",
- "type": "package",
- "path": "harfbuzzsharp/7.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "harfbuzzsharp.7.3.0.nupkg.sha512",
- "harfbuzzsharp.nuspec",
- "lib/monoandroid1.0/HarfBuzzSharp.dll",
- "lib/monoandroid1.0/HarfBuzzSharp.pdb",
- "lib/monoandroid1.0/HarfBuzzSharp.xml",
- "lib/net462/HarfBuzzSharp.dll",
- "lib/net462/HarfBuzzSharp.pdb",
- "lib/net462/HarfBuzzSharp.xml",
- "lib/net6.0-android30.0/HarfBuzzSharp.dll",
- "lib/net6.0-android30.0/HarfBuzzSharp.pdb",
- "lib/net6.0-android30.0/HarfBuzzSharp.xml",
- "lib/net6.0-ios13.6/HarfBuzzSharp.dll",
- "lib/net6.0-ios13.6/HarfBuzzSharp.pdb",
- "lib/net6.0-ios13.6/HarfBuzzSharp.xml",
- "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll",
- "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb",
- "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml",
- "lib/net6.0-macos10.15/HarfBuzzSharp.dll",
- "lib/net6.0-macos10.15/HarfBuzzSharp.pdb",
- "lib/net6.0-macos10.15/HarfBuzzSharp.xml",
- "lib/net6.0-tvos13.4/HarfBuzzSharp.dll",
- "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb",
- "lib/net6.0-tvos13.4/HarfBuzzSharp.xml",
- "lib/net6.0/HarfBuzzSharp.dll",
- "lib/net6.0/HarfBuzzSharp.pdb",
- "lib/net6.0/HarfBuzzSharp.xml",
- "lib/netcoreapp3.1/HarfBuzzSharp.dll",
- "lib/netcoreapp3.1/HarfBuzzSharp.pdb",
- "lib/netcoreapp3.1/HarfBuzzSharp.xml",
- "lib/netstandard1.3/HarfBuzzSharp.dll",
- "lib/netstandard1.3/HarfBuzzSharp.pdb",
- "lib/netstandard1.3/HarfBuzzSharp.xml",
- "lib/netstandard2.0/HarfBuzzSharp.dll",
- "lib/netstandard2.0/HarfBuzzSharp.pdb",
- "lib/netstandard2.0/HarfBuzzSharp.xml",
- "lib/netstandard2.1/HarfBuzzSharp.dll",
- "lib/netstandard2.1/HarfBuzzSharp.pdb",
- "lib/netstandard2.1/HarfBuzzSharp.xml",
- "lib/tizen40/HarfBuzzSharp.dll",
- "lib/tizen40/HarfBuzzSharp.pdb",
- "lib/tizen40/HarfBuzzSharp.xml",
- "lib/uap10.0.10240/HarfBuzzSharp.dll",
- "lib/uap10.0.10240/HarfBuzzSharp.pdb",
- "lib/uap10.0.10240/HarfBuzzSharp.xml",
- "lib/uap10.0.16299/HarfBuzzSharp.dll",
- "lib/uap10.0.16299/HarfBuzzSharp.pdb",
- "lib/uap10.0.16299/HarfBuzzSharp.xml",
- "lib/xamarinios1.0/HarfBuzzSharp.dll",
- "lib/xamarinios1.0/HarfBuzzSharp.pdb",
- "lib/xamarinios1.0/HarfBuzzSharp.xml",
- "lib/xamarinmac2.0/HarfBuzzSharp.dll",
- "lib/xamarinmac2.0/HarfBuzzSharp.pdb",
- "lib/xamarinmac2.0/HarfBuzzSharp.xml",
- "lib/xamarintvos1.0/HarfBuzzSharp.dll",
- "lib/xamarintvos1.0/HarfBuzzSharp.pdb",
- "lib/xamarintvos1.0/HarfBuzzSharp.xml",
- "lib/xamarinwatchos1.0/HarfBuzzSharp.dll",
- "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb",
- "lib/xamarinwatchos1.0/HarfBuzzSharp.xml"
- ]
- },
- "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
- "sha512": "m6F2pEBTN0zTRgQ3caJQRGQkZZizZwHHCbu+rTv+gvwteNBOpqOLD5GE4dB9TFjNNpnyHXtfuMD86JuUra9UvA==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.linux/7.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
- "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
- "harfbuzzsharp.nativeassets.linux.7.3.0.nupkg.sha512",
- "harfbuzzsharp.nativeassets.linux.nuspec",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "runtimes/linux-arm/native/libHarfBuzzSharp.so",
- "runtimes/linux-arm64/native/libHarfBuzzSharp.so",
- "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so",
- "runtimes/linux-x64/native/libHarfBuzzSharp.so"
- ]
- },
- "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
- "sha512": "LWcFJ39j+dN0KK8c/GJJZPPZPL9TqT2FA42/LRGqzUMmSm5LYbINOMnPvUr7RuLR6RFSmKIrgrlgObR8G5ho2A==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.macos/7.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
- "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
- "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
- "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
- "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
- "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
- "harfbuzzsharp.nativeassets.macos.7.3.0.nupkg.sha512",
- "harfbuzzsharp.nativeassets.macos.nuspec",
- "lib/net462/_._",
- "lib/net6.0-macos10.15/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "lib/xamarinmac2.0/_._",
- "runtimes/osx/native/libHarfBuzzSharp.dylib"
- ]
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
- "sha512": "cnl4I6P+VeujfSSD3ZrC5f0TrTGt9EKgCOoZ3LpgLI2xobBKLi5bxOaN2oY6B0xVXxQEhEaWBotg7AuECg00Iw==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
- "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
- "build/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/simd/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,mt/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,st/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a",
- "build/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a",
- "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
- "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
- "harfbuzzsharp.nativeassets.webassembly.7.3.0.nupkg.sha512",
- "harfbuzzsharp.nativeassets.webassembly.nuspec",
- "lib/netstandard1.0/_._"
- ]
- },
- "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
- "sha512": "ulEewLMk+dNmbmpy15ny/YusI6JNUWqchF080TV2jgfFBXPXjWm767JleDi/S7hp8eDeEN6GYIIxpvNr5fLvIw==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.win32/7.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
- "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
- "harfbuzzsharp.nativeassets.win32.7.3.0.nupkg.sha512",
- "harfbuzzsharp.nativeassets.win32.nuspec",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "runtimes/win-arm64/native/libHarfBuzzSharp.dll",
- "runtimes/win-x64/native/libHarfBuzzSharp.dll",
- "runtimes/win-x86/native/libHarfBuzzSharp.dll"
- ]
- },
- "MicroCom.Runtime/0.11.0": {
- "sha512": "MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
- "type": "package",
- "path": "microcom.runtime/0.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/MicroCom.Runtime.dll",
- "lib/netstandard2.0/MicroCom.Runtime.dll",
- "microcom.runtime.0.11.0.nupkg.sha512",
- "microcom.runtime.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.0.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EULA.rtf",
- "ThirdPartyNotices.rtf",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
- "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
- "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "build/Microsoft.CodeAnalysis.Analyzers.props",
- "build/Microsoft.CodeAnalysis.Analyzers.targets",
- "documentation/Analyzer Configuration.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
- "editorconfig/AllRulesDefault/.editorconfig",
- "editorconfig/AllRulesDisabled/.editorconfig",
- "editorconfig/AllRulesEnabled/.editorconfig",
- "editorconfig/CorrectnessRulesDefault/.editorconfig",
- "editorconfig/CorrectnessRulesEnabled/.editorconfig",
- "editorconfig/DataflowRulesDefault/.editorconfig",
- "editorconfig/DataflowRulesEnabled/.editorconfig",
- "editorconfig/LibraryRulesDefault/.editorconfig",
- "editorconfig/LibraryRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
- "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
- "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "rulesets/AllRulesDefault.ruleset",
- "rulesets/AllRulesDisabled.ruleset",
- "rulesets/AllRulesEnabled.ruleset",
- "rulesets/CorrectnessRulesDefault.ruleset",
- "rulesets/CorrectnessRulesEnabled.ruleset",
- "rulesets/DataflowRulesDefault.ruleset",
- "rulesets/DataflowRulesEnabled.ruleset",
- "rulesets/LibraryRulesDefault.ruleset",
- "rulesets/LibraryRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
- "rulesets/PortedFromFxCopRulesDefault.ruleset",
- "rulesets/PortedFromFxCopRulesEnabled.ruleset",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "sha512": "+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.scripting.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "sha512": "lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
- "type": "package",
- "path": "microsoft.codeanalysis.scripting.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.scripting.common.nuspec"
- ]
- },
- "Microsoft.CSharp/4.3.0": {
- "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "type": "package",
- "path": "microsoft.csharp/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.3.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "SkiaSharp/2.88.7": {
- "sha512": "LJHAMrbWO00J7jXWLWehyjqFo29T4VzABimfJb4nICqpEe3c/KvQGWL4ItON8ymzhxYOeFgyxeRzuNzO4GHSug==",
- "type": "package",
- "path": "skiasharp/2.88.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll",
- "lib/monoandroid1.0/SkiaSharp.dll",
- "lib/monoandroid1.0/SkiaSharp.pdb",
- "lib/monoandroid1.0/SkiaSharp.xml",
- "lib/net462/SkiaSharp.dll",
- "lib/net462/SkiaSharp.pdb",
- "lib/net462/SkiaSharp.xml",
- "lib/net6.0-android30.0/SkiaSharp.dll",
- "lib/net6.0-android30.0/SkiaSharp.pdb",
- "lib/net6.0-android30.0/SkiaSharp.xml",
- "lib/net6.0-ios13.6/SkiaSharp.dll",
- "lib/net6.0-ios13.6/SkiaSharp.pdb",
- "lib/net6.0-ios13.6/SkiaSharp.xml",
- "lib/net6.0-maccatalyst13.5/SkiaSharp.dll",
- "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb",
- "lib/net6.0-maccatalyst13.5/SkiaSharp.xml",
- "lib/net6.0-macos10.15/SkiaSharp.dll",
- "lib/net6.0-macos10.15/SkiaSharp.pdb",
- "lib/net6.0-macos10.15/SkiaSharp.xml",
- "lib/net6.0-tizen7.0/SkiaSharp.dll",
- "lib/net6.0-tizen7.0/SkiaSharp.pdb",
- "lib/net6.0-tizen7.0/SkiaSharp.xml",
- "lib/net6.0-tvos13.4/SkiaSharp.dll",
- "lib/net6.0-tvos13.4/SkiaSharp.pdb",
- "lib/net6.0-tvos13.4/SkiaSharp.xml",
- "lib/net6.0/SkiaSharp.dll",
- "lib/net6.0/SkiaSharp.pdb",
- "lib/net6.0/SkiaSharp.xml",
- "lib/netcoreapp3.1/SkiaSharp.dll",
- "lib/netcoreapp3.1/SkiaSharp.pdb",
- "lib/netcoreapp3.1/SkiaSharp.xml",
- "lib/netstandard1.3/SkiaSharp.dll",
- "lib/netstandard1.3/SkiaSharp.pdb",
- "lib/netstandard1.3/SkiaSharp.xml",
- "lib/netstandard2.0/SkiaSharp.dll",
- "lib/netstandard2.0/SkiaSharp.pdb",
- "lib/netstandard2.0/SkiaSharp.xml",
- "lib/netstandard2.1/SkiaSharp.dll",
- "lib/netstandard2.1/SkiaSharp.pdb",
- "lib/netstandard2.1/SkiaSharp.xml",
- "lib/tizen40/SkiaSharp.dll",
- "lib/tizen40/SkiaSharp.pdb",
- "lib/tizen40/SkiaSharp.xml",
- "lib/uap10.0.10240/SkiaSharp.dll",
- "lib/uap10.0.10240/SkiaSharp.pdb",
- "lib/uap10.0.10240/SkiaSharp.xml",
- "lib/uap10.0.16299/SkiaSharp.dll",
- "lib/uap10.0.16299/SkiaSharp.pdb",
- "lib/uap10.0.16299/SkiaSharp.xml",
- "lib/xamarinios1.0/SkiaSharp.dll",
- "lib/xamarinios1.0/SkiaSharp.pdb",
- "lib/xamarinios1.0/SkiaSharp.xml",
- "lib/xamarinmac2.0/SkiaSharp.dll",
- "lib/xamarinmac2.0/SkiaSharp.pdb",
- "lib/xamarinmac2.0/SkiaSharp.xml",
- "lib/xamarintvos1.0/SkiaSharp.dll",
- "lib/xamarintvos1.0/SkiaSharp.pdb",
- "lib/xamarintvos1.0/SkiaSharp.xml",
- "lib/xamarinwatchos1.0/SkiaSharp.dll",
- "lib/xamarinwatchos1.0/SkiaSharp.pdb",
- "lib/xamarinwatchos1.0/SkiaSharp.xml",
- "skiasharp.2.88.7.nupkg.sha512",
- "skiasharp.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.Linux/2.88.7": {
- "sha512": "i9VitS7/5D8Te3B1Gu7F6kakW9PYVnI3YC6MoR6NidreD9hDl1EIOQEBaa0eBsOsWNX5Bz92OVf6+7KbDrJvyg==",
- "type": "package",
- "path": "skiasharp.nativeassets.linux/2.88.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/SkiaSharp.NativeAssets.Linux.targets",
- "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.targets",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "runtimes/linux-arm/native/libSkiaSharp.so",
- "runtimes/linux-arm64/native/libSkiaSharp.so",
- "runtimes/linux-musl-x64/native/libSkiaSharp.so",
- "runtimes/linux-x64/native/libSkiaSharp.so",
- "skiasharp.nativeassets.linux.2.88.7.nupkg.sha512",
- "skiasharp.nativeassets.linux.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.macOS/2.88.7": {
- "sha512": "3jNzco4VjcYPFNxR9aNWcgweFXbTSdM1VpNRzCS4X0i1A1OuNqcaulrAvmntNpujeWxHo9e6WGh6FN8Jf5+XhA==",
- "type": "package",
- "path": "skiasharp.nativeassets.macos/2.88.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/SkiaSharp.NativeAssets.macOS.targets",
- "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
- "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
- "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets",
- "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
- "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
- "lib/net462/_._",
- "lib/net6.0-macos10.15/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "lib/xamarinmac2.0/_._",
- "runtimes/osx/native/libSkiaSharp.dylib",
- "skiasharp.nativeassets.macos.2.88.7.nupkg.sha512",
- "skiasharp.nativeassets.macos.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.7": {
- "sha512": "elmOOQTO0QXmnnHx7GliF7VNJqZkWgPqqPsXapEN0EEZJ9fGblYWmD6cqxTwaRTMCUFeLpn8+gTzY8j000MxZQ==",
- "type": "package",
- "path": "skiasharp.nativeassets.webassembly/2.88.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
- "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
- "build/netstandard1.0/libSkiaSharp.a/2.0.23/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/2.0.6/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt,simd/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.12/simd/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.12/st/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.34/mt/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,mt/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,st/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.34/st/libSkiaSharp.a",
- "build/netstandard1.0/libSkiaSharp.a/3.1.7/libSkiaSharp.a",
- "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
- "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
- "lib/netstandard1.0/_._",
- "skiasharp.nativeassets.webassembly.2.88.7.nupkg.sha512",
- "skiasharp.nativeassets.webassembly.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.Win32/2.88.7": {
- "sha512": "BCXmWdQ0oVck9vRwC8U3ocSaTHEx28VB+6qw9OxGIMQ86iO5bp4Flqk3IXH0l9Pbr7vWAUOpI212iaL9mTaUZQ==",
- "type": "package",
- "path": "skiasharp.nativeassets.win32/2.88.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "build/net462/SkiaSharp.NativeAssets.Win32.targets",
- "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "runtimes/win-arm64/native/libSkiaSharp.dll",
- "runtimes/win-x64/native/libSkiaSharp.dll",
- "runtimes/win-x86/native/libSkiaSharp.dll",
- "skiasharp.nativeassets.win32.2.88.7.nupkg.sha512",
- "skiasharp.nativeassets.win32.nuspec"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Immutable/5.0.0": {
- "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
- "type": "package",
- "path": "system.collections.immutable/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard1.3/System.Collections.Immutable.dll",
- "lib/netstandard1.3/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "system.collections.immutable.5.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
- "type": "package",
- "path": "system.componentmodel.annotations/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net461/System.ComponentModel.Annotations.dll",
- "lib/netcore50/System.ComponentModel.Annotations.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "lib/portable-net45+win8/_._",
- "lib/uap10.0.16299/_._",
- "lib/win8/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net461/System.ComponentModel.Annotations.dll",
- "ref/net461/System.ComponentModel.Annotations.xml",
- "ref/netcore50/System.ComponentModel.Annotations.dll",
- "ref/netcore50/System.ComponentModel.Annotations.xml",
- "ref/netcore50/de/System.ComponentModel.Annotations.xml",
- "ref/netcore50/es/System.ComponentModel.Annotations.xml",
- "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
- "ref/netcore50/it/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
- "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
- "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
- "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
- "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
- "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
- "ref/portable-net45+win8/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.4.5.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Dynamic.Runtime/4.3.0": {
- "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "type": "package",
- "path": "system.dynamic.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Dynamic.Runtime.dll",
- "lib/netstandard1.3/System.Dynamic.Runtime.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Dynamic.Runtime.dll",
- "ref/netcore50/System.Dynamic.Runtime.xml",
- "ref/netcore50/de/System.Dynamic.Runtime.xml",
- "ref/netcore50/es/System.Dynamic.Runtime.xml",
- "ref/netcore50/fr/System.Dynamic.Runtime.xml",
- "ref/netcore50/it/System.Dynamic.Runtime.xml",
- "ref/netcore50/ja/System.Dynamic.Runtime.xml",
- "ref/netcore50/ko/System.Dynamic.Runtime.xml",
- "ref/netcore50/ru/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/System.Dynamic.Runtime.dll",
- "ref/netstandard1.0/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/System.Dynamic.Runtime.dll",
- "ref/netstandard1.3/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
- "system.dynamic.runtime.4.3.0.nupkg.sha512",
- "system.dynamic.runtime.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.Pipelines/6.0.0": {
- "sha512": "mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
- "type": "package",
- "path": "system.io.pipelines/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.0.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Linq.Expressions/4.3.0": {
- "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "type": "package",
- "path": "system.linq.expressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.3.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.Memory/4.5.4": {
- "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "type": "package",
- "path": "system.memory/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.4.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Numerics.Vectors/4.5.0": {
- "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "type": "package",
- "path": "system.numerics.vectors/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Numerics.Vectors.dll",
- "lib/net46/System.Numerics.Vectors.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.Numerics.Vectors.dll",
- "lib/netstandard1.0/System.Numerics.Vectors.xml",
- "lib/netstandard2.0/System.Numerics.Vectors.dll",
- "lib/netstandard2.0/System.Numerics.Vectors.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
- "lib/uap10.0.16299/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.Numerics.Vectors.dll",
- "ref/net45/System.Numerics.Vectors.xml",
- "ref/net46/System.Numerics.Vectors.dll",
- "ref/net46/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/System.Numerics.Vectors.dll",
- "ref/netstandard1.0/System.Numerics.Vectors.xml",
- "ref/netstandard2.0/System.Numerics.Vectors.dll",
- "ref/netstandard2.0/System.Numerics.Vectors.xml",
- "ref/uap10.0.16299/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.numerics.vectors.4.5.0.nupkg.sha512",
- "system.numerics.vectors.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ObjectModel/4.3.0": {
- "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "type": "package",
- "path": "system.objectmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.3.0.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "system.reflection.emit.lightweight.nuspec"
- ]
- },
- "System.Reflection.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "system.reflection.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/netcore50/de/System.Reflection.Extensions.xml",
- "ref/netcore50/es/System.Reflection.Extensions.xml",
- "ref/netcore50/fr/System.Reflection.Extensions.xml",
- "ref/netcore50/it/System.Reflection.Extensions.xml",
- "ref/netcore50/ja/System.Reflection.Extensions.xml",
- "ref/netcore50/ko/System.Reflection.Extensions.xml",
- "ref/netcore50/ru/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/System.Reflection.Extensions.dll",
- "ref/netstandard1.0/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.extensions.4.3.0.nupkg.sha512",
- "system.reflection.extensions.nuspec"
- ]
- },
- "System.Reflection.Metadata/5.0.0": {
- "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
- "type": "package",
- "path": "system.reflection.metadata/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/netstandard1.1/System.Reflection.Metadata.dll",
- "lib/netstandard1.1/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "lib/portable-net45+win8/System.Reflection.Metadata.dll",
- "lib/portable-net45+win8/System.Reflection.Metadata.xml",
- "system.reflection.metadata.5.0.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "system.reflection.typeextensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/net462/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/net462/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
- "system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "system.reflection.typeextensions.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
- "type": "package",
- "path": "system.text.encoding.codepages/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "system.text.encoding.codepages.4.5.1.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "sha512": "QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
- "type": "package",
- "path": "tmds.dbus.protocol/0.15.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0/Tmds.DBus.Protocol.dll",
- "lib/netstandard2.0/Tmds.DBus.Protocol.dll",
- "lib/netstandard2.1/Tmds.DBus.Protocol.dll",
- "tmds.dbus.protocol.0.15.0.nupkg.sha512",
- "tmds.dbus.protocol.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Avalonia >= 11.0.10",
- "Avalonia.Desktop >= 11.0.10",
- "Avalonia.Diagnostics >= 11.0.10",
- "Avalonia.Fonts.Inter >= 11.0.10",
- "Avalonia.Themes.Fluent >= 11.0.10"
- ]
- },
- "packageFolders": {
- "C:\\Users\\reksh\\.nuget\\packages\\": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\AvaloniaApplication1.csproj",
- "projectName": "AvaloniaApplication1",
- "projectPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\AvaloniaApplication1.csproj",
- "packagesPath": "C:\\Users\\reksh\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\obj\\",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "C:\\Users\\reksh\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Avalonia": {
- "target": "Package",
- "version": "[11.0.10, )"
- },
- "Avalonia.Desktop": {
- "target": "Package",
- "version": "[11.0.10, )"
- },
- "Avalonia.Diagnostics": {
- "target": "Package",
- "version": "[11.0.10, )"
- },
- "Avalonia.Fonts.Inter": {
- "target": "Package",
- "version": "[11.0.10, )"
- },
- "Avalonia.Themes.Fluent": {
- "target": "Package",
- "version": "[11.0.10, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
|