project.assets.json 181 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "Avalonia/11.0.10": {
  6. "type": "package",
  7. "dependencies": {
  8. "Avalonia.BuildServices": "0.0.29",
  9. "Avalonia.Remote.Protocol": "11.0.10",
  10. "MicroCom.Runtime": "0.11.0",
  11. "System.ComponentModel.Annotations": "4.5.0"
  12. },
  13. "compile": {
  14. "ref/net6.0/Avalonia.Base.dll": {
  15. "related": ".xml"
  16. },
  17. "ref/net6.0/Avalonia.Controls.dll": {
  18. "related": ".xml"
  19. },
  20. "ref/net6.0/Avalonia.DesignerSupport.dll": {
  21. "related": ".xml"
  22. },
  23. "ref/net6.0/Avalonia.Dialogs.dll": {
  24. "related": ".xml"
  25. },
  26. "ref/net6.0/Avalonia.Markup.Xaml.dll": {
  27. "related": ".xml"
  28. },
  29. "ref/net6.0/Avalonia.Markup.dll": {
  30. "related": ".Xaml.xml;.xml"
  31. },
  32. "ref/net6.0/Avalonia.Metal.dll": {
  33. "related": ".xml"
  34. },
  35. "ref/net6.0/Avalonia.MicroCom.dll": {
  36. "related": ".xml"
  37. },
  38. "ref/net6.0/Avalonia.OpenGL.dll": {
  39. "related": ".xml"
  40. },
  41. "ref/net6.0/Avalonia.dll": {
  42. "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
  43. }
  44. },
  45. "runtime": {
  46. "lib/net6.0/Avalonia.Base.dll": {
  47. "related": ".xml"
  48. },
  49. "lib/net6.0/Avalonia.Controls.dll": {
  50. "related": ".xml"
  51. },
  52. "lib/net6.0/Avalonia.DesignerSupport.dll": {
  53. "related": ".xml"
  54. },
  55. "lib/net6.0/Avalonia.Dialogs.dll": {
  56. "related": ".xml"
  57. },
  58. "lib/net6.0/Avalonia.Markup.Xaml.dll": {
  59. "related": ".xml"
  60. },
  61. "lib/net6.0/Avalonia.Markup.dll": {
  62. "related": ".Xaml.xml;.xml"
  63. },
  64. "lib/net6.0/Avalonia.Metal.dll": {
  65. "related": ".xml"
  66. },
  67. "lib/net6.0/Avalonia.MicroCom.dll": {
  68. "related": ".xml"
  69. },
  70. "lib/net6.0/Avalonia.OpenGL.dll": {
  71. "related": ".xml"
  72. },
  73. "lib/net6.0/Avalonia.dll": {
  74. "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
  75. }
  76. },
  77. "build": {
  78. "buildTransitive/Avalonia.props": {},
  79. "buildTransitive/Avalonia.targets": {}
  80. }
  81. },
  82. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  83. "type": "package",
  84. "runtimeTargets": {
  85. "runtimes/win-arm64/native/av_libglesv2.dll": {
  86. "assetType": "native",
  87. "rid": "win-arm64"
  88. },
  89. "runtimes/win-x64/native/av_libglesv2.dll": {
  90. "assetType": "native",
  91. "rid": "win-x64"
  92. },
  93. "runtimes/win-x86/native/av_libglesv2.dll": {
  94. "assetType": "native",
  95. "rid": "win-x86"
  96. }
  97. }
  98. },
  99. "Avalonia.BuildServices/0.0.29": {
  100. "type": "package",
  101. "build": {
  102. "buildTransitive/Avalonia.BuildServices.targets": {}
  103. }
  104. },
  105. "Avalonia.Controls.ColorPicker/11.0.10": {
  106. "type": "package",
  107. "dependencies": {
  108. "Avalonia": "11.0.10",
  109. "Avalonia.Remote.Protocol": "11.0.10"
  110. },
  111. "compile": {
  112. "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
  113. "related": ".xml"
  114. }
  115. },
  116. "runtime": {
  117. "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
  118. "related": ".xml"
  119. }
  120. }
  121. },
  122. "Avalonia.Controls.DataGrid/11.0.10": {
  123. "type": "package",
  124. "dependencies": {
  125. "Avalonia": "11.0.10",
  126. "Avalonia.Remote.Protocol": "11.0.10"
  127. },
  128. "compile": {
  129. "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
  130. "related": ".xml"
  131. }
  132. },
  133. "runtime": {
  134. "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
  135. "related": ".xml"
  136. }
  137. }
  138. },
  139. "Avalonia.Desktop/11.0.10": {
  140. "type": "package",
  141. "dependencies": {
  142. "Avalonia": "11.0.10",
  143. "Avalonia.Native": "11.0.10",
  144. "Avalonia.Skia": "11.0.10",
  145. "Avalonia.Win32": "11.0.10",
  146. "Avalonia.X11": "11.0.10"
  147. },
  148. "compile": {
  149. "lib/net6.0/Avalonia.Desktop.dll": {
  150. "related": ".xml"
  151. }
  152. },
  153. "runtime": {
  154. "lib/net6.0/Avalonia.Desktop.dll": {
  155. "related": ".xml"
  156. }
  157. }
  158. },
  159. "Avalonia.Diagnostics/11.0.10": {
  160. "type": "package",
  161. "dependencies": {
  162. "Avalonia": "11.0.10",
  163. "Avalonia.Controls.ColorPicker": "11.0.10",
  164. "Avalonia.Controls.DataGrid": "11.0.10",
  165. "Avalonia.Themes.Simple": "11.0.10",
  166. "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
  167. "Microsoft.CodeAnalysis.Common": "3.8.0"
  168. },
  169. "compile": {
  170. "lib/net6.0/Avalonia.Diagnostics.dll": {
  171. "related": ".xml"
  172. }
  173. },
  174. "runtime": {
  175. "lib/net6.0/Avalonia.Diagnostics.dll": {
  176. "related": ".xml"
  177. }
  178. }
  179. },
  180. "Avalonia.Fonts.Inter/11.0.10": {
  181. "type": "package",
  182. "dependencies": {
  183. "Avalonia": "11.0.10"
  184. },
  185. "compile": {
  186. "lib/net6.0/Avalonia.Fonts.Inter.dll": {
  187. "related": ".xml"
  188. }
  189. },
  190. "runtime": {
  191. "lib/net6.0/Avalonia.Fonts.Inter.dll": {
  192. "related": ".xml"
  193. }
  194. }
  195. },
  196. "Avalonia.FreeDesktop/11.0.10": {
  197. "type": "package",
  198. "dependencies": {
  199. "Avalonia": "11.0.10",
  200. "Tmds.DBus.Protocol": "0.15.0"
  201. },
  202. "compile": {
  203. "lib/net6.0/Avalonia.FreeDesktop.dll": {
  204. "related": ".xml"
  205. }
  206. },
  207. "runtime": {
  208. "lib/net6.0/Avalonia.FreeDesktop.dll": {
  209. "related": ".xml"
  210. }
  211. }
  212. },
  213. "Avalonia.Native/11.0.10": {
  214. "type": "package",
  215. "dependencies": {
  216. "Avalonia": "11.0.10"
  217. },
  218. "compile": {
  219. "lib/net6.0/Avalonia.Native.dll": {
  220. "related": ".xml"
  221. }
  222. },
  223. "runtime": {
  224. "lib/net6.0/Avalonia.Native.dll": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtimeTargets": {
  229. "runtimes/osx/native/libAvaloniaNative.dylib": {
  230. "assetType": "native",
  231. "rid": "osx"
  232. }
  233. }
  234. },
  235. "Avalonia.Remote.Protocol/11.0.10": {
  236. "type": "package",
  237. "compile": {
  238. "lib/net6.0/Avalonia.Remote.Protocol.dll": {
  239. "related": ".xml"
  240. }
  241. },
  242. "runtime": {
  243. "lib/net6.0/Avalonia.Remote.Protocol.dll": {
  244. "related": ".xml"
  245. }
  246. }
  247. },
  248. "Avalonia.Skia/11.0.10": {
  249. "type": "package",
  250. "dependencies": {
  251. "Avalonia": "11.0.10",
  252. "HarfBuzzSharp": "7.3.0",
  253. "HarfBuzzSharp.NativeAssets.Linux": "7.3.0",
  254. "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0",
  255. "SkiaSharp": "2.88.7",
  256. "SkiaSharp.NativeAssets.Linux": "2.88.7",
  257. "SkiaSharp.NativeAssets.WebAssembly": "2.88.7"
  258. },
  259. "compile": {
  260. "lib/net6.0/Avalonia.Skia.dll": {
  261. "related": ".xml"
  262. }
  263. },
  264. "runtime": {
  265. "lib/net6.0/Avalonia.Skia.dll": {
  266. "related": ".xml"
  267. }
  268. }
  269. },
  270. "Avalonia.Themes.Fluent/11.0.10": {
  271. "type": "package",
  272. "dependencies": {
  273. "Avalonia": "11.0.10"
  274. },
  275. "compile": {
  276. "lib/net6.0/Avalonia.Themes.Fluent.dll": {
  277. "related": ".xml"
  278. }
  279. },
  280. "runtime": {
  281. "lib/net6.0/Avalonia.Themes.Fluent.dll": {
  282. "related": ".xml"
  283. }
  284. }
  285. },
  286. "Avalonia.Themes.Simple/11.0.10": {
  287. "type": "package",
  288. "dependencies": {
  289. "Avalonia": "11.0.10"
  290. },
  291. "compile": {
  292. "lib/net6.0/Avalonia.Themes.Simple.dll": {
  293. "related": ".xml"
  294. }
  295. },
  296. "runtime": {
  297. "lib/net6.0/Avalonia.Themes.Simple.dll": {
  298. "related": ".xml"
  299. }
  300. }
  301. },
  302. "Avalonia.Win32/11.0.10": {
  303. "type": "package",
  304. "dependencies": {
  305. "Avalonia": "11.0.10",
  306. "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
  307. "System.Numerics.Vectors": "4.5.0"
  308. },
  309. "compile": {
  310. "lib/net6.0/Avalonia.Win32.dll": {
  311. "related": ".xml"
  312. }
  313. },
  314. "runtime": {
  315. "lib/net6.0/Avalonia.Win32.dll": {
  316. "related": ".xml"
  317. }
  318. }
  319. },
  320. "Avalonia.X11/11.0.10": {
  321. "type": "package",
  322. "dependencies": {
  323. "Avalonia": "11.0.10",
  324. "Avalonia.FreeDesktop": "11.0.10",
  325. "Avalonia.Skia": "11.0.10"
  326. },
  327. "compile": {
  328. "lib/net6.0/Avalonia.X11.dll": {
  329. "related": ".xml"
  330. }
  331. },
  332. "runtime": {
  333. "lib/net6.0/Avalonia.X11.dll": {
  334. "related": ".xml"
  335. }
  336. }
  337. },
  338. "HarfBuzzSharp/7.3.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "HarfBuzzSharp.NativeAssets.Win32": "7.3.0",
  342. "HarfBuzzSharp.NativeAssets.macOS": "7.3.0"
  343. },
  344. "compile": {
  345. "lib/net6.0/HarfBuzzSharp.dll": {
  346. "related": ".pdb;.xml"
  347. }
  348. },
  349. "runtime": {
  350. "lib/net6.0/HarfBuzzSharp.dll": {
  351. "related": ".pdb;.xml"
  352. }
  353. }
  354. },
  355. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  356. "type": "package",
  357. "dependencies": {
  358. "HarfBuzzSharp": "7.3.0"
  359. },
  360. "compile": {
  361. "lib/net6.0/_._": {}
  362. },
  363. "runtime": {
  364. "lib/net6.0/_._": {}
  365. },
  366. "runtimeTargets": {
  367. "runtimes/linux-arm/native/libHarfBuzzSharp.so": {
  368. "assetType": "native",
  369. "rid": "linux-arm"
  370. },
  371. "runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
  372. "assetType": "native",
  373. "rid": "linux-arm64"
  374. },
  375. "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
  376. "assetType": "native",
  377. "rid": "linux-musl-x64"
  378. },
  379. "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
  380. "assetType": "native",
  381. "rid": "linux-x64"
  382. }
  383. }
  384. },
  385. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  386. "type": "package",
  387. "compile": {
  388. "lib/net6.0/_._": {}
  389. },
  390. "runtime": {
  391. "lib/net6.0/_._": {}
  392. },
  393. "runtimeTargets": {
  394. "runtimes/osx/native/libHarfBuzzSharp.dylib": {
  395. "assetType": "native",
  396. "rid": "osx"
  397. }
  398. }
  399. },
  400. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
  401. "type": "package",
  402. "compile": {
  403. "lib/netstandard1.0/_._": {}
  404. },
  405. "runtime": {
  406. "lib/netstandard1.0/_._": {}
  407. },
  408. "build": {
  409. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {},
  410. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {}
  411. }
  412. },
  413. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  414. "type": "package",
  415. "compile": {
  416. "lib/net6.0/_._": {}
  417. },
  418. "runtime": {
  419. "lib/net6.0/_._": {}
  420. },
  421. "runtimeTargets": {
  422. "runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
  423. "assetType": "native",
  424. "rid": "win-arm64"
  425. },
  426. "runtimes/win-x64/native/libHarfBuzzSharp.dll": {
  427. "assetType": "native",
  428. "rid": "win-x64"
  429. },
  430. "runtimes/win-x86/native/libHarfBuzzSharp.dll": {
  431. "assetType": "native",
  432. "rid": "win-x86"
  433. }
  434. }
  435. },
  436. "MicroCom.Runtime/0.11.0": {
  437. "type": "package",
  438. "compile": {
  439. "lib/net5.0/MicroCom.Runtime.dll": {}
  440. },
  441. "runtime": {
  442. "lib/net5.0/MicroCom.Runtime.dll": {}
  443. }
  444. },
  445. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  446. "type": "package",
  447. "build": {
  448. "build/_._": {}
  449. }
  450. },
  451. "Microsoft.CodeAnalysis.Common/3.8.0": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  455. "System.Collections.Immutable": "5.0.0",
  456. "System.Memory": "4.5.4",
  457. "System.Reflection.Metadata": "5.0.0",
  458. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  459. "System.Text.Encoding.CodePages": "4.5.1",
  460. "System.Threading.Tasks.Extensions": "4.5.4"
  461. },
  462. "compile": {
  463. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  464. "related": ".pdb;.xml"
  465. }
  466. },
  467. "runtime": {
  468. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  469. "related": ".pdb;.xml"
  470. }
  471. },
  472. "resource": {
  473. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  474. "locale": "cs"
  475. },
  476. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  477. "locale": "de"
  478. },
  479. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  480. "locale": "es"
  481. },
  482. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  483. "locale": "fr"
  484. },
  485. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  486. "locale": "it"
  487. },
  488. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  489. "locale": "ja"
  490. },
  491. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  492. "locale": "ko"
  493. },
  494. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  495. "locale": "pl"
  496. },
  497. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  498. "locale": "pt-BR"
  499. },
  500. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  501. "locale": "ru"
  502. },
  503. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  504. "locale": "tr"
  505. },
  506. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  507. "locale": "zh-Hans"
  508. },
  509. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  510. "locale": "zh-Hant"
  511. }
  512. }
  513. },
  514. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  515. "type": "package",
  516. "dependencies": {
  517. "Microsoft.CodeAnalysis.Common": "[3.8.0]"
  518. },
  519. "compile": {
  520. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  521. "related": ".pdb;.xml"
  522. }
  523. },
  524. "runtime": {
  525. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  526. "related": ".pdb;.xml"
  527. }
  528. },
  529. "resource": {
  530. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  531. "locale": "cs"
  532. },
  533. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  534. "locale": "de"
  535. },
  536. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  537. "locale": "es"
  538. },
  539. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  540. "locale": "fr"
  541. },
  542. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  543. "locale": "it"
  544. },
  545. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  546. "locale": "ja"
  547. },
  548. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  549. "locale": "ko"
  550. },
  551. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  552. "locale": "pl"
  553. },
  554. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  555. "locale": "pt-BR"
  556. },
  557. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  558. "locale": "ru"
  559. },
  560. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  561. "locale": "tr"
  562. },
  563. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  564. "locale": "zh-Hans"
  565. },
  566. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  567. "locale": "zh-Hant"
  568. }
  569. }
  570. },
  571. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  572. "type": "package",
  573. "dependencies": {
  574. "Microsoft.CSharp": "4.3.0",
  575. "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
  576. "Microsoft.CodeAnalysis.Common": "[3.8.0]",
  577. "Microsoft.CodeAnalysis.Scripting.Common": "[3.8.0]"
  578. },
  579. "compile": {
  580. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  581. "related": ".pdb;.xml"
  582. }
  583. },
  584. "runtime": {
  585. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  586. "related": ".pdb;.xml"
  587. }
  588. },
  589. "resource": {
  590. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  591. "locale": "cs"
  592. },
  593. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  594. "locale": "de"
  595. },
  596. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  597. "locale": "es"
  598. },
  599. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  600. "locale": "fr"
  601. },
  602. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  603. "locale": "it"
  604. },
  605. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  606. "locale": "ja"
  607. },
  608. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  609. "locale": "ko"
  610. },
  611. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  612. "locale": "pl"
  613. },
  614. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  615. "locale": "pt-BR"
  616. },
  617. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  618. "locale": "ru"
  619. },
  620. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  621. "locale": "tr"
  622. },
  623. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  624. "locale": "zh-Hans"
  625. },
  626. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  627. "locale": "zh-Hant"
  628. }
  629. }
  630. },
  631. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.CodeAnalysis.Common": "[3.8.0]"
  635. },
  636. "compile": {
  637. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  638. "related": ".pdb;.xml"
  639. }
  640. },
  641. "runtime": {
  642. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  643. "related": ".pdb;.xml"
  644. }
  645. },
  646. "resource": {
  647. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  648. "locale": "cs"
  649. },
  650. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  651. "locale": "de"
  652. },
  653. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  654. "locale": "es"
  655. },
  656. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  657. "locale": "fr"
  658. },
  659. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  660. "locale": "it"
  661. },
  662. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  663. "locale": "ja"
  664. },
  665. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  666. "locale": "ko"
  667. },
  668. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  669. "locale": "pl"
  670. },
  671. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  672. "locale": "pt-BR"
  673. },
  674. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  675. "locale": "ru"
  676. },
  677. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  678. "locale": "tr"
  679. },
  680. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  681. "locale": "zh-Hans"
  682. },
  683. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  684. "locale": "zh-Hant"
  685. }
  686. }
  687. },
  688. "Microsoft.CSharp/4.3.0": {
  689. "type": "package",
  690. "dependencies": {
  691. "System.Collections": "4.3.0",
  692. "System.Diagnostics.Debug": "4.3.0",
  693. "System.Dynamic.Runtime": "4.3.0",
  694. "System.Globalization": "4.3.0",
  695. "System.Linq": "4.3.0",
  696. "System.Linq.Expressions": "4.3.0",
  697. "System.ObjectModel": "4.3.0",
  698. "System.Reflection": "4.3.0",
  699. "System.Reflection.Extensions": "4.3.0",
  700. "System.Reflection.Primitives": "4.3.0",
  701. "System.Reflection.TypeExtensions": "4.3.0",
  702. "System.Resources.ResourceManager": "4.3.0",
  703. "System.Runtime": "4.3.0",
  704. "System.Runtime.Extensions": "4.3.0",
  705. "System.Runtime.InteropServices": "4.3.0",
  706. "System.Threading": "4.3.0"
  707. },
  708. "compile": {
  709. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  715. }
  716. },
  717. "Microsoft.NETCore.Platforms/2.1.2": {
  718. "type": "package",
  719. "compile": {
  720. "lib/netstandard1.0/_._": {}
  721. },
  722. "runtime": {
  723. "lib/netstandard1.0/_._": {}
  724. }
  725. },
  726. "Microsoft.NETCore.Targets/1.1.0": {
  727. "type": "package",
  728. "compile": {
  729. "lib/netstandard1.0/_._": {}
  730. },
  731. "runtime": {
  732. "lib/netstandard1.0/_._": {}
  733. }
  734. },
  735. "SkiaSharp/2.88.7": {
  736. "type": "package",
  737. "dependencies": {
  738. "SkiaSharp.NativeAssets.Win32": "2.88.7",
  739. "SkiaSharp.NativeAssets.macOS": "2.88.7"
  740. },
  741. "compile": {
  742. "lib/net6.0/SkiaSharp.dll": {
  743. "related": ".pdb;.xml"
  744. }
  745. },
  746. "runtime": {
  747. "lib/net6.0/SkiaSharp.dll": {
  748. "related": ".pdb;.xml"
  749. }
  750. }
  751. },
  752. "SkiaSharp.NativeAssets.Linux/2.88.7": {
  753. "type": "package",
  754. "dependencies": {
  755. "SkiaSharp": "2.88.7"
  756. },
  757. "compile": {
  758. "lib/net6.0/_._": {}
  759. },
  760. "runtime": {
  761. "lib/net6.0/_._": {}
  762. },
  763. "runtimeTargets": {
  764. "runtimes/linux-arm/native/libSkiaSharp.so": {
  765. "assetType": "native",
  766. "rid": "linux-arm"
  767. },
  768. "runtimes/linux-arm64/native/libSkiaSharp.so": {
  769. "assetType": "native",
  770. "rid": "linux-arm64"
  771. },
  772. "runtimes/linux-musl-x64/native/libSkiaSharp.so": {
  773. "assetType": "native",
  774. "rid": "linux-musl-x64"
  775. },
  776. "runtimes/linux-x64/native/libSkiaSharp.so": {
  777. "assetType": "native",
  778. "rid": "linux-x64"
  779. }
  780. }
  781. },
  782. "SkiaSharp.NativeAssets.macOS/2.88.7": {
  783. "type": "package",
  784. "compile": {
  785. "lib/net6.0/_._": {}
  786. },
  787. "runtime": {
  788. "lib/net6.0/_._": {}
  789. },
  790. "runtimeTargets": {
  791. "runtimes/osx/native/libSkiaSharp.dylib": {
  792. "assetType": "native",
  793. "rid": "osx"
  794. }
  795. }
  796. },
  797. "SkiaSharp.NativeAssets.WebAssembly/2.88.7": {
  798. "type": "package",
  799. "compile": {
  800. "lib/netstandard1.0/_._": {}
  801. },
  802. "runtime": {
  803. "lib/netstandard1.0/_._": {}
  804. },
  805. "build": {
  806. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props": {},
  807. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets": {}
  808. }
  809. },
  810. "SkiaSharp.NativeAssets.Win32/2.88.7": {
  811. "type": "package",
  812. "compile": {
  813. "lib/net6.0/_._": {}
  814. },
  815. "runtime": {
  816. "lib/net6.0/_._": {}
  817. },
  818. "runtimeTargets": {
  819. "runtimes/win-arm64/native/libSkiaSharp.dll": {
  820. "assetType": "native",
  821. "rid": "win-arm64"
  822. },
  823. "runtimes/win-x64/native/libSkiaSharp.dll": {
  824. "assetType": "native",
  825. "rid": "win-x64"
  826. },
  827. "runtimes/win-x86/native/libSkiaSharp.dll": {
  828. "assetType": "native",
  829. "rid": "win-x86"
  830. }
  831. }
  832. },
  833. "System.Collections/4.3.0": {
  834. "type": "package",
  835. "dependencies": {
  836. "Microsoft.NETCore.Platforms": "1.1.0",
  837. "Microsoft.NETCore.Targets": "1.1.0",
  838. "System.Runtime": "4.3.0"
  839. },
  840. "compile": {
  841. "ref/netstandard1.3/_._": {
  842. "related": ".xml"
  843. }
  844. }
  845. },
  846. "System.Collections.Immutable/5.0.0": {
  847. "type": "package",
  848. "compile": {
  849. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "runtime": {
  854. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  855. "related": ".xml"
  856. }
  857. }
  858. },
  859. "System.ComponentModel.Annotations/4.5.0": {
  860. "type": "package",
  861. "compile": {
  862. "ref/netcoreapp2.0/_._": {}
  863. },
  864. "runtime": {
  865. "lib/netcoreapp2.0/_._": {}
  866. }
  867. },
  868. "System.Diagnostics.Debug/4.3.0": {
  869. "type": "package",
  870. "dependencies": {
  871. "Microsoft.NETCore.Platforms": "1.1.0",
  872. "Microsoft.NETCore.Targets": "1.1.0",
  873. "System.Runtime": "4.3.0"
  874. },
  875. "compile": {
  876. "ref/netstandard1.3/_._": {
  877. "related": ".xml"
  878. }
  879. }
  880. },
  881. "System.Dynamic.Runtime/4.3.0": {
  882. "type": "package",
  883. "dependencies": {
  884. "System.Collections": "4.3.0",
  885. "System.Diagnostics.Debug": "4.3.0",
  886. "System.Linq": "4.3.0",
  887. "System.Linq.Expressions": "4.3.0",
  888. "System.ObjectModel": "4.3.0",
  889. "System.Reflection": "4.3.0",
  890. "System.Reflection.Emit": "4.3.0",
  891. "System.Reflection.Emit.ILGeneration": "4.3.0",
  892. "System.Reflection.Primitives": "4.3.0",
  893. "System.Reflection.TypeExtensions": "4.3.0",
  894. "System.Resources.ResourceManager": "4.3.0",
  895. "System.Runtime": "4.3.0",
  896. "System.Runtime.Extensions": "4.3.0",
  897. "System.Threading": "4.3.0"
  898. },
  899. "compile": {
  900. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  901. "related": ".xml"
  902. }
  903. },
  904. "runtime": {
  905. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  906. }
  907. },
  908. "System.Globalization/4.3.0": {
  909. "type": "package",
  910. "dependencies": {
  911. "Microsoft.NETCore.Platforms": "1.1.0",
  912. "Microsoft.NETCore.Targets": "1.1.0",
  913. "System.Runtime": "4.3.0"
  914. },
  915. "compile": {
  916. "ref/netstandard1.3/_._": {
  917. "related": ".xml"
  918. }
  919. }
  920. },
  921. "System.IO/4.3.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.NETCore.Platforms": "1.1.0",
  925. "Microsoft.NETCore.Targets": "1.1.0",
  926. "System.Runtime": "4.3.0",
  927. "System.Text.Encoding": "4.3.0",
  928. "System.Threading.Tasks": "4.3.0"
  929. },
  930. "compile": {
  931. "ref/netstandard1.5/System.IO.dll": {
  932. "related": ".xml"
  933. }
  934. }
  935. },
  936. "System.IO.Pipelines/6.0.0": {
  937. "type": "package",
  938. "compile": {
  939. "lib/net6.0/System.IO.Pipelines.dll": {
  940. "related": ".xml"
  941. }
  942. },
  943. "runtime": {
  944. "lib/net6.0/System.IO.Pipelines.dll": {
  945. "related": ".xml"
  946. }
  947. },
  948. "build": {
  949. "buildTransitive/netcoreapp3.1/_._": {}
  950. }
  951. },
  952. "System.Linq/4.3.0": {
  953. "type": "package",
  954. "dependencies": {
  955. "System.Collections": "4.3.0",
  956. "System.Diagnostics.Debug": "4.3.0",
  957. "System.Resources.ResourceManager": "4.3.0",
  958. "System.Runtime": "4.3.0",
  959. "System.Runtime.Extensions": "4.3.0"
  960. },
  961. "compile": {
  962. "ref/netstandard1.6/_._": {
  963. "related": ".xml"
  964. }
  965. },
  966. "runtime": {
  967. "lib/netstandard1.6/System.Linq.dll": {}
  968. }
  969. },
  970. "System.Linq.Expressions/4.3.0": {
  971. "type": "package",
  972. "dependencies": {
  973. "System.Collections": "4.3.0",
  974. "System.Diagnostics.Debug": "4.3.0",
  975. "System.Globalization": "4.3.0",
  976. "System.IO": "4.3.0",
  977. "System.Linq": "4.3.0",
  978. "System.ObjectModel": "4.3.0",
  979. "System.Reflection": "4.3.0",
  980. "System.Reflection.Emit": "4.3.0",
  981. "System.Reflection.Emit.ILGeneration": "4.3.0",
  982. "System.Reflection.Emit.Lightweight": "4.3.0",
  983. "System.Reflection.Extensions": "4.3.0",
  984. "System.Reflection.Primitives": "4.3.0",
  985. "System.Reflection.TypeExtensions": "4.3.0",
  986. "System.Resources.ResourceManager": "4.3.0",
  987. "System.Runtime": "4.3.0",
  988. "System.Runtime.Extensions": "4.3.0",
  989. "System.Threading": "4.3.0"
  990. },
  991. "compile": {
  992. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  993. "related": ".xml"
  994. }
  995. },
  996. "runtime": {
  997. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  998. }
  999. },
  1000. "System.Memory/4.5.4": {
  1001. "type": "package",
  1002. "compile": {
  1003. "ref/netcoreapp2.1/_._": {}
  1004. },
  1005. "runtime": {
  1006. "lib/netcoreapp2.1/_._": {}
  1007. }
  1008. },
  1009. "System.Numerics.Vectors/4.5.0": {
  1010. "type": "package",
  1011. "compile": {
  1012. "ref/netcoreapp2.0/_._": {}
  1013. },
  1014. "runtime": {
  1015. "lib/netcoreapp2.0/_._": {}
  1016. }
  1017. },
  1018. "System.ObjectModel/4.3.0": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "System.Collections": "4.3.0",
  1022. "System.Diagnostics.Debug": "4.3.0",
  1023. "System.Resources.ResourceManager": "4.3.0",
  1024. "System.Runtime": "4.3.0",
  1025. "System.Threading": "4.3.0"
  1026. },
  1027. "compile": {
  1028. "ref/netstandard1.3/System.ObjectModel.dll": {
  1029. "related": ".xml"
  1030. }
  1031. },
  1032. "runtime": {
  1033. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1034. }
  1035. },
  1036. "System.Reflection/4.3.0": {
  1037. "type": "package",
  1038. "dependencies": {
  1039. "Microsoft.NETCore.Platforms": "1.1.0",
  1040. "Microsoft.NETCore.Targets": "1.1.0",
  1041. "System.IO": "4.3.0",
  1042. "System.Reflection.Primitives": "4.3.0",
  1043. "System.Runtime": "4.3.0"
  1044. },
  1045. "compile": {
  1046. "ref/netstandard1.5/System.Reflection.dll": {
  1047. "related": ".xml"
  1048. }
  1049. }
  1050. },
  1051. "System.Reflection.Emit/4.3.0": {
  1052. "type": "package",
  1053. "dependencies": {
  1054. "System.IO": "4.3.0",
  1055. "System.Reflection": "4.3.0",
  1056. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1057. "System.Reflection.Primitives": "4.3.0",
  1058. "System.Runtime": "4.3.0"
  1059. },
  1060. "compile": {
  1061. "ref/netstandard1.1/_._": {
  1062. "related": ".xml"
  1063. }
  1064. },
  1065. "runtime": {
  1066. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1067. }
  1068. },
  1069. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1070. "type": "package",
  1071. "dependencies": {
  1072. "System.Reflection": "4.3.0",
  1073. "System.Reflection.Primitives": "4.3.0",
  1074. "System.Runtime": "4.3.0"
  1075. },
  1076. "compile": {
  1077. "ref/netstandard1.0/_._": {
  1078. "related": ".xml"
  1079. }
  1080. },
  1081. "runtime": {
  1082. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1083. }
  1084. },
  1085. "System.Reflection.Emit.Lightweight/4.3.0": {
  1086. "type": "package",
  1087. "dependencies": {
  1088. "System.Reflection": "4.3.0",
  1089. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1090. "System.Reflection.Primitives": "4.3.0",
  1091. "System.Runtime": "4.3.0"
  1092. },
  1093. "compile": {
  1094. "ref/netstandard1.0/_._": {
  1095. "related": ".xml"
  1096. }
  1097. },
  1098. "runtime": {
  1099. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1100. }
  1101. },
  1102. "System.Reflection.Extensions/4.3.0": {
  1103. "type": "package",
  1104. "dependencies": {
  1105. "Microsoft.NETCore.Platforms": "1.1.0",
  1106. "Microsoft.NETCore.Targets": "1.1.0",
  1107. "System.Reflection": "4.3.0",
  1108. "System.Runtime": "4.3.0"
  1109. },
  1110. "compile": {
  1111. "ref/netstandard1.0/_._": {
  1112. "related": ".xml"
  1113. }
  1114. }
  1115. },
  1116. "System.Reflection.Metadata/5.0.0": {
  1117. "type": "package",
  1118. "compile": {
  1119. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1120. "related": ".xml"
  1121. }
  1122. },
  1123. "runtime": {
  1124. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1125. "related": ".xml"
  1126. }
  1127. }
  1128. },
  1129. "System.Reflection.Primitives/4.3.0": {
  1130. "type": "package",
  1131. "dependencies": {
  1132. "Microsoft.NETCore.Platforms": "1.1.0",
  1133. "Microsoft.NETCore.Targets": "1.1.0",
  1134. "System.Runtime": "4.3.0"
  1135. },
  1136. "compile": {
  1137. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1138. "related": ".xml"
  1139. }
  1140. }
  1141. },
  1142. "System.Reflection.TypeExtensions/4.3.0": {
  1143. "type": "package",
  1144. "dependencies": {
  1145. "System.Reflection": "4.3.0",
  1146. "System.Runtime": "4.3.0"
  1147. },
  1148. "compile": {
  1149. "ref/netstandard1.5/_._": {
  1150. "related": ".xml"
  1151. }
  1152. },
  1153. "runtime": {
  1154. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1155. }
  1156. },
  1157. "System.Resources.ResourceManager/4.3.0": {
  1158. "type": "package",
  1159. "dependencies": {
  1160. "Microsoft.NETCore.Platforms": "1.1.0",
  1161. "Microsoft.NETCore.Targets": "1.1.0",
  1162. "System.Globalization": "4.3.0",
  1163. "System.Reflection": "4.3.0",
  1164. "System.Runtime": "4.3.0"
  1165. },
  1166. "compile": {
  1167. "ref/netstandard1.0/_._": {
  1168. "related": ".xml"
  1169. }
  1170. }
  1171. },
  1172. "System.Runtime/4.3.0": {
  1173. "type": "package",
  1174. "dependencies": {
  1175. "Microsoft.NETCore.Platforms": "1.1.0",
  1176. "Microsoft.NETCore.Targets": "1.1.0"
  1177. },
  1178. "compile": {
  1179. "ref/netstandard1.5/System.Runtime.dll": {
  1180. "related": ".xml"
  1181. }
  1182. }
  1183. },
  1184. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  1185. "type": "package",
  1186. "compile": {
  1187. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1188. "related": ".xml"
  1189. }
  1190. },
  1191. "runtime": {
  1192. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1193. "related": ".xml"
  1194. }
  1195. }
  1196. },
  1197. "System.Runtime.Extensions/4.3.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "Microsoft.NETCore.Platforms": "1.1.0",
  1201. "Microsoft.NETCore.Targets": "1.1.0",
  1202. "System.Runtime": "4.3.0"
  1203. },
  1204. "compile": {
  1205. "ref/netstandard1.5/_._": {
  1206. "related": ".xml"
  1207. }
  1208. }
  1209. },
  1210. "System.Runtime.Handles/4.3.0": {
  1211. "type": "package",
  1212. "dependencies": {
  1213. "Microsoft.NETCore.Platforms": "1.1.0",
  1214. "Microsoft.NETCore.Targets": "1.1.0",
  1215. "System.Runtime": "4.3.0"
  1216. },
  1217. "compile": {
  1218. "ref/netstandard1.3/_._": {
  1219. "related": ".xml"
  1220. }
  1221. }
  1222. },
  1223. "System.Runtime.InteropServices/4.3.0": {
  1224. "type": "package",
  1225. "dependencies": {
  1226. "Microsoft.NETCore.Platforms": "1.1.0",
  1227. "Microsoft.NETCore.Targets": "1.1.0",
  1228. "System.Reflection": "4.3.0",
  1229. "System.Reflection.Primitives": "4.3.0",
  1230. "System.Runtime": "4.3.0",
  1231. "System.Runtime.Handles": "4.3.0"
  1232. },
  1233. "compile": {
  1234. "ref/netcoreapp1.1/_._": {}
  1235. }
  1236. },
  1237. "System.Text.Encoding/4.3.0": {
  1238. "type": "package",
  1239. "dependencies": {
  1240. "Microsoft.NETCore.Platforms": "1.1.0",
  1241. "Microsoft.NETCore.Targets": "1.1.0",
  1242. "System.Runtime": "4.3.0"
  1243. },
  1244. "compile": {
  1245. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1246. "related": ".xml"
  1247. }
  1248. }
  1249. },
  1250. "System.Text.Encoding.CodePages/4.5.1": {
  1251. "type": "package",
  1252. "dependencies": {
  1253. "Microsoft.NETCore.Platforms": "2.1.2",
  1254. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  1255. },
  1256. "compile": {
  1257. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1258. },
  1259. "runtime": {
  1260. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  1261. },
  1262. "runtimeTargets": {
  1263. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1264. "assetType": "runtime",
  1265. "rid": "win"
  1266. }
  1267. }
  1268. },
  1269. "System.Threading/4.3.0": {
  1270. "type": "package",
  1271. "dependencies": {
  1272. "System.Runtime": "4.3.0",
  1273. "System.Threading.Tasks": "4.3.0"
  1274. },
  1275. "compile": {
  1276. "ref/netstandard1.3/_._": {
  1277. "related": ".xml"
  1278. }
  1279. },
  1280. "runtime": {
  1281. "lib/netstandard1.3/System.Threading.dll": {}
  1282. }
  1283. },
  1284. "System.Threading.Tasks/4.3.0": {
  1285. "type": "package",
  1286. "dependencies": {
  1287. "Microsoft.NETCore.Platforms": "1.1.0",
  1288. "Microsoft.NETCore.Targets": "1.1.0",
  1289. "System.Runtime": "4.3.0"
  1290. },
  1291. "compile": {
  1292. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1293. "related": ".xml"
  1294. }
  1295. }
  1296. },
  1297. "System.Threading.Tasks.Extensions/4.5.4": {
  1298. "type": "package",
  1299. "compile": {
  1300. "ref/netcoreapp2.1/_._": {}
  1301. },
  1302. "runtime": {
  1303. "lib/netcoreapp2.1/_._": {}
  1304. }
  1305. },
  1306. "Tmds.DBus.Protocol/0.15.0": {
  1307. "type": "package",
  1308. "dependencies": {
  1309. "System.IO.Pipelines": "6.0.0"
  1310. },
  1311. "compile": {
  1312. "lib/net6.0/Tmds.DBus.Protocol.dll": {}
  1313. },
  1314. "runtime": {
  1315. "lib/net6.0/Tmds.DBus.Protocol.dll": {}
  1316. }
  1317. }
  1318. }
  1319. },
  1320. "libraries": {
  1321. "Avalonia/11.0.10": {
  1322. "sha512": "EH1FyD1SA7G/TfLmb7JKQlZiOBqr6VzttJMtA5Hnc/c1623zJej0PRuQlqn8Ad6qWKorrKEypBGA9Gye3uWDrA==",
  1323. "type": "package",
  1324. "path": "avalonia/11.0.10",
  1325. "hasTools": true,
  1326. "files": [
  1327. ".nupkg.metadata",
  1328. ".signature.p7s",
  1329. "Icon.png",
  1330. "analyzers/dotnet/cs/Avalonia.Analyzers.dll",
  1331. "analyzers/dotnet/cs/Avalonia.Generators.dll",
  1332. "avalonia.11.0.10.nupkg.sha512",
  1333. "avalonia.nuspec",
  1334. "build/Avalonia.Generators.props",
  1335. "build/Avalonia.props",
  1336. "build/Avalonia.targets",
  1337. "build/AvaloniaBuildTasks.props",
  1338. "build/AvaloniaBuildTasks.targets",
  1339. "build/AvaloniaItemSchema.xaml",
  1340. "build/AvaloniaPrivateApis.targets",
  1341. "build/AvaloniaVersion.props",
  1342. "buildTransitive/Avalonia.Generators.props",
  1343. "buildTransitive/Avalonia.props",
  1344. "buildTransitive/Avalonia.targets",
  1345. "buildTransitive/AvaloniaBuildTasks.props",
  1346. "buildTransitive/AvaloniaBuildTasks.targets",
  1347. "buildTransitive/AvaloniaItemSchema.xaml",
  1348. "buildTransitive/AvaloniaPrivateApis.targets",
  1349. "lib/net461/Avalonia.Base.dll",
  1350. "lib/net461/Avalonia.Base.xml",
  1351. "lib/net461/Avalonia.Controls.dll",
  1352. "lib/net461/Avalonia.Controls.xml",
  1353. "lib/net461/Avalonia.DesignerSupport.dll",
  1354. "lib/net461/Avalonia.DesignerSupport.xml",
  1355. "lib/net461/Avalonia.Dialogs.dll",
  1356. "lib/net461/Avalonia.Dialogs.xml",
  1357. "lib/net461/Avalonia.Markup.Xaml.dll",
  1358. "lib/net461/Avalonia.Markup.Xaml.xml",
  1359. "lib/net461/Avalonia.Markup.dll",
  1360. "lib/net461/Avalonia.Markup.xml",
  1361. "lib/net461/Avalonia.Metal.dll",
  1362. "lib/net461/Avalonia.Metal.xml",
  1363. "lib/net461/Avalonia.MicroCom.dll",
  1364. "lib/net461/Avalonia.MicroCom.xml",
  1365. "lib/net461/Avalonia.OpenGL.dll",
  1366. "lib/net461/Avalonia.OpenGL.xml",
  1367. "lib/net461/Avalonia.dll",
  1368. "lib/net461/Avalonia.xml",
  1369. "lib/net6.0/Avalonia.Base.dll",
  1370. "lib/net6.0/Avalonia.Base.xml",
  1371. "lib/net6.0/Avalonia.Controls.dll",
  1372. "lib/net6.0/Avalonia.Controls.xml",
  1373. "lib/net6.0/Avalonia.DesignerSupport.dll",
  1374. "lib/net6.0/Avalonia.DesignerSupport.xml",
  1375. "lib/net6.0/Avalonia.Dialogs.dll",
  1376. "lib/net6.0/Avalonia.Dialogs.xml",
  1377. "lib/net6.0/Avalonia.Markup.Xaml.dll",
  1378. "lib/net6.0/Avalonia.Markup.Xaml.xml",
  1379. "lib/net6.0/Avalonia.Markup.dll",
  1380. "lib/net6.0/Avalonia.Markup.xml",
  1381. "lib/net6.0/Avalonia.Metal.dll",
  1382. "lib/net6.0/Avalonia.Metal.xml",
  1383. "lib/net6.0/Avalonia.MicroCom.dll",
  1384. "lib/net6.0/Avalonia.MicroCom.xml",
  1385. "lib/net6.0/Avalonia.OpenGL.dll",
  1386. "lib/net6.0/Avalonia.OpenGL.xml",
  1387. "lib/net6.0/Avalonia.dll",
  1388. "lib/net6.0/Avalonia.xml",
  1389. "lib/netcoreapp2.0/Avalonia.Base.dll",
  1390. "lib/netcoreapp2.0/Avalonia.Base.xml",
  1391. "lib/netcoreapp2.0/Avalonia.Controls.dll",
  1392. "lib/netcoreapp2.0/Avalonia.Controls.xml",
  1393. "lib/netcoreapp2.0/Avalonia.DesignerSupport.dll",
  1394. "lib/netcoreapp2.0/Avalonia.DesignerSupport.xml",
  1395. "lib/netcoreapp2.0/Avalonia.Dialogs.dll",
  1396. "lib/netcoreapp2.0/Avalonia.Dialogs.xml",
  1397. "lib/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
  1398. "lib/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
  1399. "lib/netcoreapp2.0/Avalonia.Markup.dll",
  1400. "lib/netcoreapp2.0/Avalonia.Markup.xml",
  1401. "lib/netcoreapp2.0/Avalonia.Metal.dll",
  1402. "lib/netcoreapp2.0/Avalonia.Metal.xml",
  1403. "lib/netcoreapp2.0/Avalonia.MicroCom.dll",
  1404. "lib/netcoreapp2.0/Avalonia.MicroCom.xml",
  1405. "lib/netcoreapp2.0/Avalonia.OpenGL.dll",
  1406. "lib/netcoreapp2.0/Avalonia.OpenGL.xml",
  1407. "lib/netcoreapp2.0/Avalonia.dll",
  1408. "lib/netcoreapp2.0/Avalonia.xml",
  1409. "lib/netstandard2.0/Avalonia.Base.dll",
  1410. "lib/netstandard2.0/Avalonia.Base.xml",
  1411. "lib/netstandard2.0/Avalonia.Controls.dll",
  1412. "lib/netstandard2.0/Avalonia.Controls.xml",
  1413. "lib/netstandard2.0/Avalonia.DesignerSupport.dll",
  1414. "lib/netstandard2.0/Avalonia.DesignerSupport.xml",
  1415. "lib/netstandard2.0/Avalonia.Dialogs.dll",
  1416. "lib/netstandard2.0/Avalonia.Dialogs.xml",
  1417. "lib/netstandard2.0/Avalonia.Markup.Xaml.dll",
  1418. "lib/netstandard2.0/Avalonia.Markup.Xaml.xml",
  1419. "lib/netstandard2.0/Avalonia.Markup.dll",
  1420. "lib/netstandard2.0/Avalonia.Markup.xml",
  1421. "lib/netstandard2.0/Avalonia.Metal.dll",
  1422. "lib/netstandard2.0/Avalonia.Metal.xml",
  1423. "lib/netstandard2.0/Avalonia.MicroCom.dll",
  1424. "lib/netstandard2.0/Avalonia.MicroCom.xml",
  1425. "lib/netstandard2.0/Avalonia.OpenGL.dll",
  1426. "lib/netstandard2.0/Avalonia.OpenGL.xml",
  1427. "lib/netstandard2.0/Avalonia.dll",
  1428. "lib/netstandard2.0/Avalonia.xml",
  1429. "ref/net461/Avalonia.Base.dll",
  1430. "ref/net461/Avalonia.Base.xml",
  1431. "ref/net461/Avalonia.Controls.dll",
  1432. "ref/net461/Avalonia.Controls.xml",
  1433. "ref/net461/Avalonia.DesignerSupport.dll",
  1434. "ref/net461/Avalonia.DesignerSupport.xml",
  1435. "ref/net461/Avalonia.Dialogs.dll",
  1436. "ref/net461/Avalonia.Dialogs.xml",
  1437. "ref/net461/Avalonia.Markup.Xaml.dll",
  1438. "ref/net461/Avalonia.Markup.Xaml.xml",
  1439. "ref/net461/Avalonia.Markup.dll",
  1440. "ref/net461/Avalonia.Markup.xml",
  1441. "ref/net461/Avalonia.Metal.dll",
  1442. "ref/net461/Avalonia.Metal.xml",
  1443. "ref/net461/Avalonia.MicroCom.dll",
  1444. "ref/net461/Avalonia.MicroCom.xml",
  1445. "ref/net461/Avalonia.OpenGL.dll",
  1446. "ref/net461/Avalonia.OpenGL.xml",
  1447. "ref/net461/Avalonia.dll",
  1448. "ref/net461/Avalonia.xml",
  1449. "ref/net6.0/Avalonia.Base.dll",
  1450. "ref/net6.0/Avalonia.Base.xml",
  1451. "ref/net6.0/Avalonia.Controls.dll",
  1452. "ref/net6.0/Avalonia.Controls.xml",
  1453. "ref/net6.0/Avalonia.DesignerSupport.dll",
  1454. "ref/net6.0/Avalonia.DesignerSupport.xml",
  1455. "ref/net6.0/Avalonia.Dialogs.dll",
  1456. "ref/net6.0/Avalonia.Dialogs.xml",
  1457. "ref/net6.0/Avalonia.Markup.Xaml.dll",
  1458. "ref/net6.0/Avalonia.Markup.Xaml.xml",
  1459. "ref/net6.0/Avalonia.Markup.dll",
  1460. "ref/net6.0/Avalonia.Markup.xml",
  1461. "ref/net6.0/Avalonia.Metal.dll",
  1462. "ref/net6.0/Avalonia.Metal.xml",
  1463. "ref/net6.0/Avalonia.MicroCom.dll",
  1464. "ref/net6.0/Avalonia.MicroCom.xml",
  1465. "ref/net6.0/Avalonia.OpenGL.dll",
  1466. "ref/net6.0/Avalonia.OpenGL.xml",
  1467. "ref/net6.0/Avalonia.dll",
  1468. "ref/net6.0/Avalonia.xml",
  1469. "ref/netcoreapp2.0/Avalonia.Base.dll",
  1470. "ref/netcoreapp2.0/Avalonia.Base.xml",
  1471. "ref/netcoreapp2.0/Avalonia.Controls.dll",
  1472. "ref/netcoreapp2.0/Avalonia.Controls.xml",
  1473. "ref/netcoreapp2.0/Avalonia.DesignerSupport.dll",
  1474. "ref/netcoreapp2.0/Avalonia.DesignerSupport.xml",
  1475. "ref/netcoreapp2.0/Avalonia.Dialogs.dll",
  1476. "ref/netcoreapp2.0/Avalonia.Dialogs.xml",
  1477. "ref/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
  1478. "ref/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
  1479. "ref/netcoreapp2.0/Avalonia.Markup.dll",
  1480. "ref/netcoreapp2.0/Avalonia.Markup.xml",
  1481. "ref/netcoreapp2.0/Avalonia.Metal.dll",
  1482. "ref/netcoreapp2.0/Avalonia.Metal.xml",
  1483. "ref/netcoreapp2.0/Avalonia.MicroCom.dll",
  1484. "ref/netcoreapp2.0/Avalonia.MicroCom.xml",
  1485. "ref/netcoreapp2.0/Avalonia.OpenGL.dll",
  1486. "ref/netcoreapp2.0/Avalonia.OpenGL.xml",
  1487. "ref/netcoreapp2.0/Avalonia.dll",
  1488. "ref/netcoreapp2.0/Avalonia.xml",
  1489. "ref/netstandard2.0/Avalonia.Base.dll",
  1490. "ref/netstandard2.0/Avalonia.Base.xml",
  1491. "ref/netstandard2.0/Avalonia.Controls.dll",
  1492. "ref/netstandard2.0/Avalonia.Controls.xml",
  1493. "ref/netstandard2.0/Avalonia.DesignerSupport.dll",
  1494. "ref/netstandard2.0/Avalonia.DesignerSupport.xml",
  1495. "ref/netstandard2.0/Avalonia.Dialogs.dll",
  1496. "ref/netstandard2.0/Avalonia.Dialogs.xml",
  1497. "ref/netstandard2.0/Avalonia.Markup.Xaml.dll",
  1498. "ref/netstandard2.0/Avalonia.Markup.Xaml.xml",
  1499. "ref/netstandard2.0/Avalonia.Markup.dll",
  1500. "ref/netstandard2.0/Avalonia.Markup.xml",
  1501. "ref/netstandard2.0/Avalonia.Metal.dll",
  1502. "ref/netstandard2.0/Avalonia.Metal.xml",
  1503. "ref/netstandard2.0/Avalonia.MicroCom.dll",
  1504. "ref/netstandard2.0/Avalonia.MicroCom.xml",
  1505. "ref/netstandard2.0/Avalonia.OpenGL.dll",
  1506. "ref/netstandard2.0/Avalonia.OpenGL.xml",
  1507. "ref/netstandard2.0/Avalonia.dll",
  1508. "ref/netstandard2.0/Avalonia.xml",
  1509. "tools/net461/designer/Avalonia.Designer.HostApp.exe",
  1510. "tools/netcoreapp2.0/designer/Avalonia.Designer.HostApp.dll",
  1511. "tools/netstandard2.0/Avalonia.Build.Tasks.dll"
  1512. ]
  1513. },
  1514. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  1515. "sha512": "Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
  1516. "type": "package",
  1517. "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
  1518. "files": [
  1519. ".nupkg.metadata",
  1520. ".signature.p7s",
  1521. "Icon.png",
  1522. "LICENSE.txt",
  1523. "avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512",
  1524. "avalonia.angle.windows.natives.nuspec",
  1525. "runtimes/win-arm64/native/av_libglesv2.dll",
  1526. "runtimes/win-x64/native/av_libglesv2.dll",
  1527. "runtimes/win-x86/native/av_libglesv2.dll"
  1528. ]
  1529. },
  1530. "Avalonia.BuildServices/0.0.29": {
  1531. "sha512": "U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
  1532. "type": "package",
  1533. "path": "avalonia.buildservices/0.0.29",
  1534. "hasTools": true,
  1535. "files": [
  1536. ".nupkg.metadata",
  1537. ".signature.p7s",
  1538. "avalonia.buildservices.0.0.29.nupkg.sha512",
  1539. "avalonia.buildservices.nuspec",
  1540. "build/Avalonia.BuildServices.targets",
  1541. "buildTransitive/Avalonia.BuildServices.targets",
  1542. "tools/netstandard2.0/Avalonia.BuildServices.Collector.dll",
  1543. "tools/netstandard2.0/Avalonia.BuildServices.dll",
  1544. "tools/netstandard2.0/runtimeconfig.json"
  1545. ]
  1546. },
  1547. "Avalonia.Controls.ColorPicker/11.0.10": {
  1548. "sha512": "KQEgtJcqi94ZwEA1zDJGV83OzXmAfdo2lAC8w8Fn9ftc0qUrlIoVYxujVpcABy5D0Kj5+h9/57O4fgOTaA70jg==",
  1549. "type": "package",
  1550. "path": "avalonia.controls.colorpicker/11.0.10",
  1551. "files": [
  1552. ".nupkg.metadata",
  1553. ".signature.p7s",
  1554. "Icon.png",
  1555. "avalonia.controls.colorpicker.11.0.10.nupkg.sha512",
  1556. "avalonia.controls.colorpicker.nuspec",
  1557. "lib/net6.0/Avalonia.Controls.ColorPicker.dll",
  1558. "lib/net6.0/Avalonia.Controls.ColorPicker.xml",
  1559. "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll",
  1560. "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml"
  1561. ]
  1562. },
  1563. "Avalonia.Controls.DataGrid/11.0.10": {
  1564. "sha512": "a8es+nGJvXK+rh76iFRkp7UHPvaN+WeMyH7S746r25FnrBYLkvtpEjGGKRWTFX+eO2cFcDh1qHJa63aaElivww==",
  1565. "type": "package",
  1566. "path": "avalonia.controls.datagrid/11.0.10",
  1567. "files": [
  1568. ".nupkg.metadata",
  1569. ".signature.p7s",
  1570. "Icon.png",
  1571. "avalonia.controls.datagrid.11.0.10.nupkg.sha512",
  1572. "avalonia.controls.datagrid.nuspec",
  1573. "lib/net6.0/Avalonia.Controls.DataGrid.dll",
  1574. "lib/net6.0/Avalonia.Controls.DataGrid.xml",
  1575. "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll",
  1576. "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml"
  1577. ]
  1578. },
  1579. "Avalonia.Desktop/11.0.10": {
  1580. "sha512": "jPflQRB94sr3D7tgcUuSHnvK212ZtoM2oBZVQoP/musPWiu56LZ+o7+bAt8TMGhkUBMAylZ5u+tMGCe7EUwbEA==",
  1581. "type": "package",
  1582. "path": "avalonia.desktop/11.0.10",
  1583. "files": [
  1584. ".nupkg.metadata",
  1585. ".signature.p7s",
  1586. "Icon.png",
  1587. "avalonia.desktop.11.0.10.nupkg.sha512",
  1588. "avalonia.desktop.nuspec",
  1589. "lib/net6.0/Avalonia.Desktop.dll",
  1590. "lib/net6.0/Avalonia.Desktop.xml",
  1591. "lib/netstandard2.0/Avalonia.Desktop.dll",
  1592. "lib/netstandard2.0/Avalonia.Desktop.xml"
  1593. ]
  1594. },
  1595. "Avalonia.Diagnostics/11.0.10": {
  1596. "sha512": "FvGUd1W0P4oCKrDbxs000EGPzmzedQaMyrSH3+yhg3vyuF9/gLF/GeO7La7567GeihdPC8HVf1YjGe1id8b9kA==",
  1597. "type": "package",
  1598. "path": "avalonia.diagnostics/11.0.10",
  1599. "files": [
  1600. ".nupkg.metadata",
  1601. ".signature.p7s",
  1602. "Icon.png",
  1603. "avalonia.diagnostics.11.0.10.nupkg.sha512",
  1604. "avalonia.diagnostics.nuspec",
  1605. "lib/net6.0/Avalonia.Diagnostics.dll",
  1606. "lib/net6.0/Avalonia.Diagnostics.xml",
  1607. "lib/netstandard2.0/Avalonia.Diagnostics.dll",
  1608. "lib/netstandard2.0/Avalonia.Diagnostics.xml"
  1609. ]
  1610. },
  1611. "Avalonia.Fonts.Inter/11.0.10": {
  1612. "sha512": "4hVv6u5o8NxfPv2pl1Mg0VTYzxHkc85Wnye3sQJCQtbrd8s9v3DSEYK68zT4wBFlCtc4JHUP85PfyZuoTkf08A==",
  1613. "type": "package",
  1614. "path": "avalonia.fonts.inter/11.0.10",
  1615. "files": [
  1616. ".nupkg.metadata",
  1617. ".signature.p7s",
  1618. "Icon.png",
  1619. "avalonia.fonts.inter.11.0.10.nupkg.sha512",
  1620. "avalonia.fonts.inter.nuspec",
  1621. "lib/net6.0/Avalonia.Fonts.Inter.dll",
  1622. "lib/net6.0/Avalonia.Fonts.Inter.xml",
  1623. "lib/netstandard2.0/Avalonia.Fonts.Inter.dll",
  1624. "lib/netstandard2.0/Avalonia.Fonts.Inter.xml"
  1625. ]
  1626. },
  1627. "Avalonia.FreeDesktop/11.0.10": {
  1628. "sha512": "QLVn1pjCe5ez4cH5B+NmhT61xK502mjxPxkswIbag5FB45tuNOF5zRszH+dN81rNw+VSf/J6PVXdmHz/FojyDw==",
  1629. "type": "package",
  1630. "path": "avalonia.freedesktop/11.0.10",
  1631. "files": [
  1632. ".nupkg.metadata",
  1633. ".signature.p7s",
  1634. "Icon.png",
  1635. "avalonia.freedesktop.11.0.10.nupkg.sha512",
  1636. "avalonia.freedesktop.nuspec",
  1637. "lib/net6.0/Avalonia.FreeDesktop.dll",
  1638. "lib/net6.0/Avalonia.FreeDesktop.xml",
  1639. "lib/netstandard2.0/Avalonia.FreeDesktop.dll",
  1640. "lib/netstandard2.0/Avalonia.FreeDesktop.xml"
  1641. ]
  1642. },
  1643. "Avalonia.Native/11.0.10": {
  1644. "sha512": "eJUPh4VOBomF36DzJQ+M+T1lVBVhpK3Ryx3xNnhVvYcW3dPNgugXApSbxulSipWnMfJh4DAKQD2Mt3ahy3Tp8Q==",
  1645. "type": "package",
  1646. "path": "avalonia.native/11.0.10",
  1647. "files": [
  1648. ".nupkg.metadata",
  1649. ".signature.p7s",
  1650. "Icon.png",
  1651. "avalonia.native.11.0.10.nupkg.sha512",
  1652. "avalonia.native.nuspec",
  1653. "lib/net6.0/Avalonia.Native.dll",
  1654. "lib/net6.0/Avalonia.Native.xml",
  1655. "lib/netstandard2.0/Avalonia.Native.dll",
  1656. "lib/netstandard2.0/Avalonia.Native.xml",
  1657. "runtimes/osx/native/libAvaloniaNative.dylib"
  1658. ]
  1659. },
  1660. "Avalonia.Remote.Protocol/11.0.10": {
  1661. "sha512": "4/zXSx7P2+4g7nIkSd8aIfEfRnvHjpeSEBjJznzE5iJBYO98B78wDPWEkyN8sQBJnLghaNKKsGCApx3g5R0Gsg==",
  1662. "type": "package",
  1663. "path": "avalonia.remote.protocol/11.0.10",
  1664. "files": [
  1665. ".nupkg.metadata",
  1666. ".signature.p7s",
  1667. "Icon.png",
  1668. "avalonia.remote.protocol.11.0.10.nupkg.sha512",
  1669. "avalonia.remote.protocol.nuspec",
  1670. "lib/net6.0/Avalonia.Remote.Protocol.dll",
  1671. "lib/net6.0/Avalonia.Remote.Protocol.xml",
  1672. "lib/netstandard2.0/Avalonia.Remote.Protocol.dll",
  1673. "lib/netstandard2.0/Avalonia.Remote.Protocol.xml"
  1674. ]
  1675. },
  1676. "Avalonia.Skia/11.0.10": {
  1677. "sha512": "0rDySePqUkg6cMBZEXp+5P04XgyIXOcqhsCaWhrwFAqxcp5qKjILSCNvt0pden3TqCRjuNuGaWGV+qyk58l9vA==",
  1678. "type": "package",
  1679. "path": "avalonia.skia/11.0.10",
  1680. "files": [
  1681. ".nupkg.metadata",
  1682. ".signature.p7s",
  1683. "Icon.png",
  1684. "avalonia.skia.11.0.10.nupkg.sha512",
  1685. "avalonia.skia.nuspec",
  1686. "lib/net6.0/Avalonia.Skia.dll",
  1687. "lib/net6.0/Avalonia.Skia.xml",
  1688. "lib/netstandard2.0/Avalonia.Skia.dll",
  1689. "lib/netstandard2.0/Avalonia.Skia.xml"
  1690. ]
  1691. },
  1692. "Avalonia.Themes.Fluent/11.0.10": {
  1693. "sha512": "V7xu7ddtUFwYHb+u3S4he2/PGGUHkeTI66j3PyGTZi0Uz8Ma4prb/Lgz7Qd/vpO4lukxw1G4DmxB1tClNS9qUw==",
  1694. "type": "package",
  1695. "path": "avalonia.themes.fluent/11.0.10",
  1696. "files": [
  1697. ".nupkg.metadata",
  1698. ".signature.p7s",
  1699. "Icon.png",
  1700. "avalonia.themes.fluent.11.0.10.nupkg.sha512",
  1701. "avalonia.themes.fluent.nuspec",
  1702. "lib/net6.0/Avalonia.Themes.Fluent.dll",
  1703. "lib/net6.0/Avalonia.Themes.Fluent.xml",
  1704. "lib/netstandard2.0/Avalonia.Themes.Fluent.dll",
  1705. "lib/netstandard2.0/Avalonia.Themes.Fluent.xml"
  1706. ]
  1707. },
  1708. "Avalonia.Themes.Simple/11.0.10": {
  1709. "sha512": "3MGE3iHT61dvnRV5zuHXT9qRv2Kpbq8ft3JbEdw6NyEKPwd922ASLqdl64HLWx3ZqUjdZabkmZofkqVhiwpZww==",
  1710. "type": "package",
  1711. "path": "avalonia.themes.simple/11.0.10",
  1712. "files": [
  1713. ".nupkg.metadata",
  1714. ".signature.p7s",
  1715. "Icon.png",
  1716. "avalonia.themes.simple.11.0.10.nupkg.sha512",
  1717. "avalonia.themes.simple.nuspec",
  1718. "lib/net6.0/Avalonia.Themes.Simple.dll",
  1719. "lib/net6.0/Avalonia.Themes.Simple.xml",
  1720. "lib/netstandard2.0/Avalonia.Themes.Simple.dll",
  1721. "lib/netstandard2.0/Avalonia.Themes.Simple.xml"
  1722. ]
  1723. },
  1724. "Avalonia.Win32/11.0.10": {
  1725. "sha512": "XD4fiRpiLHB6Q8e9Vevj42rYQvdnrqs56Jwu9T4UaClcuk578fUH1LP/vl9q/n8LrEUyng01Q7vtpp5sgwsXDw==",
  1726. "type": "package",
  1727. "path": "avalonia.win32/11.0.10",
  1728. "files": [
  1729. ".nupkg.metadata",
  1730. ".signature.p7s",
  1731. "Icon.png",
  1732. "avalonia.win32.11.0.10.nupkg.sha512",
  1733. "avalonia.win32.nuspec",
  1734. "lib/net6.0/Avalonia.Win32.dll",
  1735. "lib/net6.0/Avalonia.Win32.xml",
  1736. "lib/netstandard2.0/Avalonia.Win32.dll",
  1737. "lib/netstandard2.0/Avalonia.Win32.xml"
  1738. ]
  1739. },
  1740. "Avalonia.X11/11.0.10": {
  1741. "sha512": "WUhPBIYqjJdBf1TgUARYNyH1clntZ435eQzR+db4fxrg4OemePX6nJTp1Lh7G/hTVEvRgWCoYFccqm/6vsfJQQ==",
  1742. "type": "package",
  1743. "path": "avalonia.x11/11.0.10",
  1744. "files": [
  1745. ".nupkg.metadata",
  1746. ".signature.p7s",
  1747. "Icon.png",
  1748. "avalonia.x11.11.0.10.nupkg.sha512",
  1749. "avalonia.x11.nuspec",
  1750. "lib/net6.0/Avalonia.X11.dll",
  1751. "lib/net6.0/Avalonia.X11.xml",
  1752. "lib/netstandard2.0/Avalonia.X11.dll",
  1753. "lib/netstandard2.0/Avalonia.X11.xml"
  1754. ]
  1755. },
  1756. "HarfBuzzSharp/7.3.0": {
  1757. "sha512": "OrQLaxtZMIeS2yHSUtsKzeSdk9CPaCpyJ/JCs+wLfRGatjE8MLUS6LGj6vdbGRxqRavcXs79C9O3oWe6FJR0JQ==",
  1758. "type": "package",
  1759. "path": "harfbuzzsharp/7.3.0",
  1760. "files": [
  1761. ".nupkg.metadata",
  1762. ".signature.p7s",
  1763. "LICENSE.txt",
  1764. "THIRD-PARTY-NOTICES.txt",
  1765. "harfbuzzsharp.7.3.0.nupkg.sha512",
  1766. "harfbuzzsharp.nuspec",
  1767. "lib/monoandroid1.0/HarfBuzzSharp.dll",
  1768. "lib/monoandroid1.0/HarfBuzzSharp.pdb",
  1769. "lib/monoandroid1.0/HarfBuzzSharp.xml",
  1770. "lib/net462/HarfBuzzSharp.dll",
  1771. "lib/net462/HarfBuzzSharp.pdb",
  1772. "lib/net462/HarfBuzzSharp.xml",
  1773. "lib/net6.0-android30.0/HarfBuzzSharp.dll",
  1774. "lib/net6.0-android30.0/HarfBuzzSharp.pdb",
  1775. "lib/net6.0-android30.0/HarfBuzzSharp.xml",
  1776. "lib/net6.0-ios13.6/HarfBuzzSharp.dll",
  1777. "lib/net6.0-ios13.6/HarfBuzzSharp.pdb",
  1778. "lib/net6.0-ios13.6/HarfBuzzSharp.xml",
  1779. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll",
  1780. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb",
  1781. "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml",
  1782. "lib/net6.0-macos10.15/HarfBuzzSharp.dll",
  1783. "lib/net6.0-macos10.15/HarfBuzzSharp.pdb",
  1784. "lib/net6.0-macos10.15/HarfBuzzSharp.xml",
  1785. "lib/net6.0-tvos13.4/HarfBuzzSharp.dll",
  1786. "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb",
  1787. "lib/net6.0-tvos13.4/HarfBuzzSharp.xml",
  1788. "lib/net6.0/HarfBuzzSharp.dll",
  1789. "lib/net6.0/HarfBuzzSharp.pdb",
  1790. "lib/net6.0/HarfBuzzSharp.xml",
  1791. "lib/netcoreapp3.1/HarfBuzzSharp.dll",
  1792. "lib/netcoreapp3.1/HarfBuzzSharp.pdb",
  1793. "lib/netcoreapp3.1/HarfBuzzSharp.xml",
  1794. "lib/netstandard1.3/HarfBuzzSharp.dll",
  1795. "lib/netstandard1.3/HarfBuzzSharp.pdb",
  1796. "lib/netstandard1.3/HarfBuzzSharp.xml",
  1797. "lib/netstandard2.0/HarfBuzzSharp.dll",
  1798. "lib/netstandard2.0/HarfBuzzSharp.pdb",
  1799. "lib/netstandard2.0/HarfBuzzSharp.xml",
  1800. "lib/netstandard2.1/HarfBuzzSharp.dll",
  1801. "lib/netstandard2.1/HarfBuzzSharp.pdb",
  1802. "lib/netstandard2.1/HarfBuzzSharp.xml",
  1803. "lib/tizen40/HarfBuzzSharp.dll",
  1804. "lib/tizen40/HarfBuzzSharp.pdb",
  1805. "lib/tizen40/HarfBuzzSharp.xml",
  1806. "lib/uap10.0.10240/HarfBuzzSharp.dll",
  1807. "lib/uap10.0.10240/HarfBuzzSharp.pdb",
  1808. "lib/uap10.0.10240/HarfBuzzSharp.xml",
  1809. "lib/uap10.0.16299/HarfBuzzSharp.dll",
  1810. "lib/uap10.0.16299/HarfBuzzSharp.pdb",
  1811. "lib/uap10.0.16299/HarfBuzzSharp.xml",
  1812. "lib/xamarinios1.0/HarfBuzzSharp.dll",
  1813. "lib/xamarinios1.0/HarfBuzzSharp.pdb",
  1814. "lib/xamarinios1.0/HarfBuzzSharp.xml",
  1815. "lib/xamarinmac2.0/HarfBuzzSharp.dll",
  1816. "lib/xamarinmac2.0/HarfBuzzSharp.pdb",
  1817. "lib/xamarinmac2.0/HarfBuzzSharp.xml",
  1818. "lib/xamarintvos1.0/HarfBuzzSharp.dll",
  1819. "lib/xamarintvos1.0/HarfBuzzSharp.pdb",
  1820. "lib/xamarintvos1.0/HarfBuzzSharp.xml",
  1821. "lib/xamarinwatchos1.0/HarfBuzzSharp.dll",
  1822. "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb",
  1823. "lib/xamarinwatchos1.0/HarfBuzzSharp.xml"
  1824. ]
  1825. },
  1826. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  1827. "sha512": "m6F2pEBTN0zTRgQ3caJQRGQkZZizZwHHCbu+rTv+gvwteNBOpqOLD5GE4dB9TFjNNpnyHXtfuMD86JuUra9UvA==",
  1828. "type": "package",
  1829. "path": "harfbuzzsharp.nativeassets.linux/7.3.0",
  1830. "files": [
  1831. ".nupkg.metadata",
  1832. ".signature.p7s",
  1833. "LICENSE.txt",
  1834. "THIRD-PARTY-NOTICES.txt",
  1835. "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
  1836. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
  1837. "harfbuzzsharp.nativeassets.linux.7.3.0.nupkg.sha512",
  1838. "harfbuzzsharp.nativeassets.linux.nuspec",
  1839. "lib/net462/_._",
  1840. "lib/net6.0/_._",
  1841. "lib/netcoreapp3.1/_._",
  1842. "lib/netstandard1.3/_._",
  1843. "runtimes/linux-arm/native/libHarfBuzzSharp.so",
  1844. "runtimes/linux-arm64/native/libHarfBuzzSharp.so",
  1845. "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so",
  1846. "runtimes/linux-x64/native/libHarfBuzzSharp.so"
  1847. ]
  1848. },
  1849. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  1850. "sha512": "LWcFJ39j+dN0KK8c/GJJZPPZPL9TqT2FA42/LRGqzUMmSm5LYbINOMnPvUr7RuLR6RFSmKIrgrlgObR8G5ho2A==",
  1851. "type": "package",
  1852. "path": "harfbuzzsharp.nativeassets.macos/7.3.0",
  1853. "files": [
  1854. ".nupkg.metadata",
  1855. ".signature.p7s",
  1856. "LICENSE.txt",
  1857. "THIRD-PARTY-NOTICES.txt",
  1858. "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
  1859. "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
  1860. "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
  1861. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
  1862. "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
  1863. "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
  1864. "harfbuzzsharp.nativeassets.macos.7.3.0.nupkg.sha512",
  1865. "harfbuzzsharp.nativeassets.macos.nuspec",
  1866. "lib/net462/_._",
  1867. "lib/net6.0-macos10.15/_._",
  1868. "lib/net6.0/_._",
  1869. "lib/netcoreapp3.1/_._",
  1870. "lib/netstandard1.3/_._",
  1871. "lib/xamarinmac2.0/_._",
  1872. "runtimes/osx/native/libHarfBuzzSharp.dylib"
  1873. ]
  1874. },
  1875. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
  1876. "sha512": "cnl4I6P+VeujfSSD3ZrC5f0TrTGt9EKgCOoZ3LpgLI2xobBKLi5bxOaN2oY6B0xVXxQEhEaWBotg7AuECg00Iw==",
  1877. "type": "package",
  1878. "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0",
  1879. "files": [
  1880. ".nupkg.metadata",
  1881. ".signature.p7s",
  1882. "LICENSE.txt",
  1883. "THIRD-PARTY-NOTICES.txt",
  1884. "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
  1885. "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
  1886. "build/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a",
  1887. "build/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a",
  1888. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a",
  1889. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a",
  1890. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/simd/libHarfBuzzSharp.a",
  1891. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a",
  1892. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a",
  1893. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,mt/libHarfBuzzSharp.a",
  1894. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,st/libHarfBuzzSharp.a",
  1895. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a",
  1896. "build/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a",
  1897. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
  1898. "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
  1899. "harfbuzzsharp.nativeassets.webassembly.7.3.0.nupkg.sha512",
  1900. "harfbuzzsharp.nativeassets.webassembly.nuspec",
  1901. "lib/netstandard1.0/_._"
  1902. ]
  1903. },
  1904. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  1905. "sha512": "ulEewLMk+dNmbmpy15ny/YusI6JNUWqchF080TV2jgfFBXPXjWm767JleDi/S7hp8eDeEN6GYIIxpvNr5fLvIw==",
  1906. "type": "package",
  1907. "path": "harfbuzzsharp.nativeassets.win32/7.3.0",
  1908. "files": [
  1909. ".nupkg.metadata",
  1910. ".signature.p7s",
  1911. "LICENSE.txt",
  1912. "THIRD-PARTY-NOTICES.txt",
  1913. "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
  1914. "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
  1915. "harfbuzzsharp.nativeassets.win32.7.3.0.nupkg.sha512",
  1916. "harfbuzzsharp.nativeassets.win32.nuspec",
  1917. "lib/net462/_._",
  1918. "lib/net6.0/_._",
  1919. "lib/netcoreapp3.1/_._",
  1920. "lib/netstandard1.3/_._",
  1921. "runtimes/win-arm64/native/libHarfBuzzSharp.dll",
  1922. "runtimes/win-x64/native/libHarfBuzzSharp.dll",
  1923. "runtimes/win-x86/native/libHarfBuzzSharp.dll"
  1924. ]
  1925. },
  1926. "MicroCom.Runtime/0.11.0": {
  1927. "sha512": "MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
  1928. "type": "package",
  1929. "path": "microcom.runtime/0.11.0",
  1930. "files": [
  1931. ".nupkg.metadata",
  1932. ".signature.p7s",
  1933. "lib/net5.0/MicroCom.Runtime.dll",
  1934. "lib/netstandard2.0/MicroCom.Runtime.dll",
  1935. "microcom.runtime.0.11.0.nupkg.sha512",
  1936. "microcom.runtime.nuspec"
  1937. ]
  1938. },
  1939. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  1940. "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  1941. "type": "package",
  1942. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  1943. "hasTools": true,
  1944. "files": [
  1945. ".nupkg.metadata",
  1946. ".signature.p7s",
  1947. "EULA.rtf",
  1948. "ThirdPartyNotices.rtf",
  1949. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  1950. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  1951. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1952. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1953. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1954. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1955. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1956. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1957. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1958. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1959. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1960. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1961. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1962. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1963. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1964. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  1965. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  1966. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1967. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1968. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1969. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1970. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1971. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1972. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1973. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1974. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1975. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1976. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1977. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1978. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  1979. "build/Microsoft.CodeAnalysis.Analyzers.props",
  1980. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  1981. "documentation/Analyzer Configuration.md",
  1982. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  1983. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  1984. "editorconfig/AllRulesDefault/.editorconfig",
  1985. "editorconfig/AllRulesDisabled/.editorconfig",
  1986. "editorconfig/AllRulesEnabled/.editorconfig",
  1987. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  1988. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  1989. "editorconfig/DataflowRulesDefault/.editorconfig",
  1990. "editorconfig/DataflowRulesEnabled/.editorconfig",
  1991. "editorconfig/LibraryRulesDefault/.editorconfig",
  1992. "editorconfig/LibraryRulesEnabled/.editorconfig",
  1993. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  1994. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  1995. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  1996. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  1997. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  1998. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  1999. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  2000. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  2001. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  2002. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  2003. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  2004. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  2005. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  2006. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  2007. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  2008. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  2009. "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
  2010. "microsoft.codeanalysis.analyzers.nuspec",
  2011. "rulesets/AllRulesDefault.ruleset",
  2012. "rulesets/AllRulesDisabled.ruleset",
  2013. "rulesets/AllRulesEnabled.ruleset",
  2014. "rulesets/CorrectnessRulesDefault.ruleset",
  2015. "rulesets/CorrectnessRulesEnabled.ruleset",
  2016. "rulesets/DataflowRulesDefault.ruleset",
  2017. "rulesets/DataflowRulesEnabled.ruleset",
  2018. "rulesets/LibraryRulesDefault.ruleset",
  2019. "rulesets/LibraryRulesEnabled.ruleset",
  2020. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2021. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2022. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2023. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2024. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2025. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2026. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2027. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2028. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2029. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2030. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2031. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2032. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  2033. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  2034. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2035. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2036. "tools/install.ps1",
  2037. "tools/uninstall.ps1"
  2038. ]
  2039. },
  2040. "Microsoft.CodeAnalysis.Common/3.8.0": {
  2041. "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
  2042. "type": "package",
  2043. "path": "microsoft.codeanalysis.common/3.8.0",
  2044. "files": [
  2045. ".nupkg.metadata",
  2046. ".signature.p7s",
  2047. "Icon.png",
  2048. "ThirdPartyNotices.rtf",
  2049. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  2050. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  2051. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  2052. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  2053. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  2054. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  2055. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  2056. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  2057. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  2058. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  2059. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  2060. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2061. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  2062. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  2063. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2064. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2065. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2066. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2067. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2068. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2069. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2070. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2071. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2072. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2073. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2074. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2075. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2076. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2077. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2078. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2079. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2080. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2081. "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
  2082. "microsoft.codeanalysis.common.nuspec"
  2083. ]
  2084. },
  2085. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  2086. "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
  2087. "type": "package",
  2088. "path": "microsoft.codeanalysis.csharp/3.8.0",
  2089. "files": [
  2090. ".nupkg.metadata",
  2091. ".signature.p7s",
  2092. "Icon.png",
  2093. "ThirdPartyNotices.rtf",
  2094. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  2095. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  2096. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  2097. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2098. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2099. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2100. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2101. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2102. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2103. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2104. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2105. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2106. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2107. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2108. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2109. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2110. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2111. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2112. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2113. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2114. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2115. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2116. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2117. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2118. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2119. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2120. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2121. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2122. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2123. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2124. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2125. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2126. "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
  2127. "microsoft.codeanalysis.csharp.nuspec"
  2128. ]
  2129. },
  2130. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  2131. "sha512": "+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
  2132. "type": "package",
  2133. "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
  2134. "files": [
  2135. ".nupkg.metadata",
  2136. ".signature.p7s",
  2137. "Icon.png",
  2138. "ThirdPartyNotices.rtf",
  2139. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  2140. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  2141. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  2142. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2143. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2144. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2145. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2146. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2147. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2148. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2149. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2150. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2151. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2152. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2153. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2154. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2155. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  2156. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  2157. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  2158. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2159. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2160. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2161. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2162. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2163. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2164. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2165. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2166. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2167. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2168. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2169. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2170. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  2171. "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512",
  2172. "microsoft.codeanalysis.csharp.scripting.nuspec"
  2173. ]
  2174. },
  2175. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  2176. "sha512": "lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
  2177. "type": "package",
  2178. "path": "microsoft.codeanalysis.scripting.common/3.8.0",
  2179. "files": [
  2180. ".nupkg.metadata",
  2181. ".signature.p7s",
  2182. "Icon.png",
  2183. "ThirdPartyNotices.rtf",
  2184. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
  2185. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
  2186. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
  2187. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2188. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2189. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2190. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2191. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2192. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2193. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2194. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2195. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2196. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2197. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2198. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2199. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2200. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  2201. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  2202. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  2203. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2204. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2205. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2206. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2207. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2208. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2209. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2210. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2211. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2212. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2213. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2214. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2215. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  2216. "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512",
  2217. "microsoft.codeanalysis.scripting.common.nuspec"
  2218. ]
  2219. },
  2220. "Microsoft.CSharp/4.3.0": {
  2221. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  2222. "type": "package",
  2223. "path": "microsoft.csharp/4.3.0",
  2224. "files": [
  2225. ".nupkg.metadata",
  2226. ".signature.p7s",
  2227. "ThirdPartyNotices.txt",
  2228. "dotnet_library_license.txt",
  2229. "lib/MonoAndroid10/_._",
  2230. "lib/MonoTouch10/_._",
  2231. "lib/net45/_._",
  2232. "lib/netcore50/Microsoft.CSharp.dll",
  2233. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2234. "lib/portable-net45+win8+wp8+wpa81/_._",
  2235. "lib/win8/_._",
  2236. "lib/wp80/_._",
  2237. "lib/wpa81/_._",
  2238. "lib/xamarinios10/_._",
  2239. "lib/xamarinmac20/_._",
  2240. "lib/xamarintvos10/_._",
  2241. "lib/xamarinwatchos10/_._",
  2242. "microsoft.csharp.4.3.0.nupkg.sha512",
  2243. "microsoft.csharp.nuspec",
  2244. "ref/MonoAndroid10/_._",
  2245. "ref/MonoTouch10/_._",
  2246. "ref/net45/_._",
  2247. "ref/netcore50/Microsoft.CSharp.dll",
  2248. "ref/netcore50/Microsoft.CSharp.xml",
  2249. "ref/netcore50/de/Microsoft.CSharp.xml",
  2250. "ref/netcore50/es/Microsoft.CSharp.xml",
  2251. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2252. "ref/netcore50/it/Microsoft.CSharp.xml",
  2253. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2254. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2255. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2256. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2257. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2258. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2259. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2260. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2261. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2262. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2263. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2264. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2265. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2266. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2267. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2268. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2269. "ref/portable-net45+win8+wp8+wpa81/_._",
  2270. "ref/win8/_._",
  2271. "ref/wp80/_._",
  2272. "ref/wpa81/_._",
  2273. "ref/xamarinios10/_._",
  2274. "ref/xamarinmac20/_._",
  2275. "ref/xamarintvos10/_._",
  2276. "ref/xamarinwatchos10/_._"
  2277. ]
  2278. },
  2279. "Microsoft.NETCore.Platforms/2.1.2": {
  2280. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  2281. "type": "package",
  2282. "path": "microsoft.netcore.platforms/2.1.2",
  2283. "files": [
  2284. ".nupkg.metadata",
  2285. ".signature.p7s",
  2286. "LICENSE.TXT",
  2287. "THIRD-PARTY-NOTICES.TXT",
  2288. "lib/netstandard1.0/_._",
  2289. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  2290. "microsoft.netcore.platforms.nuspec",
  2291. "runtime.json",
  2292. "useSharedDesignerContext.txt",
  2293. "version.txt"
  2294. ]
  2295. },
  2296. "Microsoft.NETCore.Targets/1.1.0": {
  2297. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2298. "type": "package",
  2299. "path": "microsoft.netcore.targets/1.1.0",
  2300. "files": [
  2301. ".nupkg.metadata",
  2302. ".signature.p7s",
  2303. "ThirdPartyNotices.txt",
  2304. "dotnet_library_license.txt",
  2305. "lib/netstandard1.0/_._",
  2306. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2307. "microsoft.netcore.targets.nuspec",
  2308. "runtime.json"
  2309. ]
  2310. },
  2311. "SkiaSharp/2.88.7": {
  2312. "sha512": "LJHAMrbWO00J7jXWLWehyjqFo29T4VzABimfJb4nICqpEe3c/KvQGWL4ItON8ymzhxYOeFgyxeRzuNzO4GHSug==",
  2313. "type": "package",
  2314. "path": "skiasharp/2.88.7",
  2315. "files": [
  2316. ".nupkg.metadata",
  2317. ".signature.p7s",
  2318. "LICENSE.txt",
  2319. "THIRD-PARTY-NOTICES.txt",
  2320. "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll",
  2321. "lib/monoandroid1.0/SkiaSharp.dll",
  2322. "lib/monoandroid1.0/SkiaSharp.pdb",
  2323. "lib/monoandroid1.0/SkiaSharp.xml",
  2324. "lib/net462/SkiaSharp.dll",
  2325. "lib/net462/SkiaSharp.pdb",
  2326. "lib/net462/SkiaSharp.xml",
  2327. "lib/net6.0-android30.0/SkiaSharp.dll",
  2328. "lib/net6.0-android30.0/SkiaSharp.pdb",
  2329. "lib/net6.0-android30.0/SkiaSharp.xml",
  2330. "lib/net6.0-ios13.6/SkiaSharp.dll",
  2331. "lib/net6.0-ios13.6/SkiaSharp.pdb",
  2332. "lib/net6.0-ios13.6/SkiaSharp.xml",
  2333. "lib/net6.0-maccatalyst13.5/SkiaSharp.dll",
  2334. "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb",
  2335. "lib/net6.0-maccatalyst13.5/SkiaSharp.xml",
  2336. "lib/net6.0-macos10.15/SkiaSharp.dll",
  2337. "lib/net6.0-macos10.15/SkiaSharp.pdb",
  2338. "lib/net6.0-macos10.15/SkiaSharp.xml",
  2339. "lib/net6.0-tizen7.0/SkiaSharp.dll",
  2340. "lib/net6.0-tizen7.0/SkiaSharp.pdb",
  2341. "lib/net6.0-tizen7.0/SkiaSharp.xml",
  2342. "lib/net6.0-tvos13.4/SkiaSharp.dll",
  2343. "lib/net6.0-tvos13.4/SkiaSharp.pdb",
  2344. "lib/net6.0-tvos13.4/SkiaSharp.xml",
  2345. "lib/net6.0/SkiaSharp.dll",
  2346. "lib/net6.0/SkiaSharp.pdb",
  2347. "lib/net6.0/SkiaSharp.xml",
  2348. "lib/netcoreapp3.1/SkiaSharp.dll",
  2349. "lib/netcoreapp3.1/SkiaSharp.pdb",
  2350. "lib/netcoreapp3.1/SkiaSharp.xml",
  2351. "lib/netstandard1.3/SkiaSharp.dll",
  2352. "lib/netstandard1.3/SkiaSharp.pdb",
  2353. "lib/netstandard1.3/SkiaSharp.xml",
  2354. "lib/netstandard2.0/SkiaSharp.dll",
  2355. "lib/netstandard2.0/SkiaSharp.pdb",
  2356. "lib/netstandard2.0/SkiaSharp.xml",
  2357. "lib/netstandard2.1/SkiaSharp.dll",
  2358. "lib/netstandard2.1/SkiaSharp.pdb",
  2359. "lib/netstandard2.1/SkiaSharp.xml",
  2360. "lib/tizen40/SkiaSharp.dll",
  2361. "lib/tizen40/SkiaSharp.pdb",
  2362. "lib/tizen40/SkiaSharp.xml",
  2363. "lib/uap10.0.10240/SkiaSharp.dll",
  2364. "lib/uap10.0.10240/SkiaSharp.pdb",
  2365. "lib/uap10.0.10240/SkiaSharp.xml",
  2366. "lib/uap10.0.16299/SkiaSharp.dll",
  2367. "lib/uap10.0.16299/SkiaSharp.pdb",
  2368. "lib/uap10.0.16299/SkiaSharp.xml",
  2369. "lib/xamarinios1.0/SkiaSharp.dll",
  2370. "lib/xamarinios1.0/SkiaSharp.pdb",
  2371. "lib/xamarinios1.0/SkiaSharp.xml",
  2372. "lib/xamarinmac2.0/SkiaSharp.dll",
  2373. "lib/xamarinmac2.0/SkiaSharp.pdb",
  2374. "lib/xamarinmac2.0/SkiaSharp.xml",
  2375. "lib/xamarintvos1.0/SkiaSharp.dll",
  2376. "lib/xamarintvos1.0/SkiaSharp.pdb",
  2377. "lib/xamarintvos1.0/SkiaSharp.xml",
  2378. "lib/xamarinwatchos1.0/SkiaSharp.dll",
  2379. "lib/xamarinwatchos1.0/SkiaSharp.pdb",
  2380. "lib/xamarinwatchos1.0/SkiaSharp.xml",
  2381. "skiasharp.2.88.7.nupkg.sha512",
  2382. "skiasharp.nuspec"
  2383. ]
  2384. },
  2385. "SkiaSharp.NativeAssets.Linux/2.88.7": {
  2386. "sha512": "i9VitS7/5D8Te3B1Gu7F6kakW9PYVnI3YC6MoR6NidreD9hDl1EIOQEBaa0eBsOsWNX5Bz92OVf6+7KbDrJvyg==",
  2387. "type": "package",
  2388. "path": "skiasharp.nativeassets.linux/2.88.7",
  2389. "files": [
  2390. ".nupkg.metadata",
  2391. ".signature.p7s",
  2392. "LICENSE.txt",
  2393. "THIRD-PARTY-NOTICES.txt",
  2394. "build/net462/SkiaSharp.NativeAssets.Linux.targets",
  2395. "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.targets",
  2396. "lib/net462/_._",
  2397. "lib/net6.0/_._",
  2398. "lib/netcoreapp3.1/_._",
  2399. "lib/netstandard1.3/_._",
  2400. "runtimes/linux-arm/native/libSkiaSharp.so",
  2401. "runtimes/linux-arm64/native/libSkiaSharp.so",
  2402. "runtimes/linux-musl-x64/native/libSkiaSharp.so",
  2403. "runtimes/linux-x64/native/libSkiaSharp.so",
  2404. "skiasharp.nativeassets.linux.2.88.7.nupkg.sha512",
  2405. "skiasharp.nativeassets.linux.nuspec"
  2406. ]
  2407. },
  2408. "SkiaSharp.NativeAssets.macOS/2.88.7": {
  2409. "sha512": "3jNzco4VjcYPFNxR9aNWcgweFXbTSdM1VpNRzCS4X0i1A1OuNqcaulrAvmntNpujeWxHo9e6WGh6FN8Jf5+XhA==",
  2410. "type": "package",
  2411. "path": "skiasharp.nativeassets.macos/2.88.7",
  2412. "files": [
  2413. ".nupkg.metadata",
  2414. ".signature.p7s",
  2415. "LICENSE.txt",
  2416. "THIRD-PARTY-NOTICES.txt",
  2417. "build/net462/SkiaSharp.NativeAssets.macOS.targets",
  2418. "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
  2419. "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
  2420. "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets",
  2421. "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets",
  2422. "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets",
  2423. "lib/net462/_._",
  2424. "lib/net6.0-macos10.15/_._",
  2425. "lib/net6.0/_._",
  2426. "lib/netcoreapp3.1/_._",
  2427. "lib/netstandard1.3/_._",
  2428. "lib/xamarinmac2.0/_._",
  2429. "runtimes/osx/native/libSkiaSharp.dylib",
  2430. "skiasharp.nativeassets.macos.2.88.7.nupkg.sha512",
  2431. "skiasharp.nativeassets.macos.nuspec"
  2432. ]
  2433. },
  2434. "SkiaSharp.NativeAssets.WebAssembly/2.88.7": {
  2435. "sha512": "elmOOQTO0QXmnnHx7GliF7VNJqZkWgPqqPsXapEN0EEZJ9fGblYWmD6cqxTwaRTMCUFeLpn8+gTzY8j000MxZQ==",
  2436. "type": "package",
  2437. "path": "skiasharp.nativeassets.webassembly/2.88.7",
  2438. "files": [
  2439. ".nupkg.metadata",
  2440. ".signature.p7s",
  2441. "LICENSE.txt",
  2442. "THIRD-PARTY-NOTICES.txt",
  2443. "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
  2444. "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
  2445. "build/netstandard1.0/libSkiaSharp.a/2.0.23/libSkiaSharp.a",
  2446. "build/netstandard1.0/libSkiaSharp.a/2.0.6/libSkiaSharp.a",
  2447. "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt,simd/libSkiaSharp.a",
  2448. "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt/libSkiaSharp.a",
  2449. "build/netstandard1.0/libSkiaSharp.a/3.1.12/simd/libSkiaSharp.a",
  2450. "build/netstandard1.0/libSkiaSharp.a/3.1.12/st/libSkiaSharp.a",
  2451. "build/netstandard1.0/libSkiaSharp.a/3.1.34/mt/libSkiaSharp.a",
  2452. "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,mt/libSkiaSharp.a",
  2453. "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,st/libSkiaSharp.a",
  2454. "build/netstandard1.0/libSkiaSharp.a/3.1.34/st/libSkiaSharp.a",
  2455. "build/netstandard1.0/libSkiaSharp.a/3.1.7/libSkiaSharp.a",
  2456. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props",
  2457. "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets",
  2458. "lib/netstandard1.0/_._",
  2459. "skiasharp.nativeassets.webassembly.2.88.7.nupkg.sha512",
  2460. "skiasharp.nativeassets.webassembly.nuspec"
  2461. ]
  2462. },
  2463. "SkiaSharp.NativeAssets.Win32/2.88.7": {
  2464. "sha512": "BCXmWdQ0oVck9vRwC8U3ocSaTHEx28VB+6qw9OxGIMQ86iO5bp4Flqk3IXH0l9Pbr7vWAUOpI212iaL9mTaUZQ==",
  2465. "type": "package",
  2466. "path": "skiasharp.nativeassets.win32/2.88.7",
  2467. "files": [
  2468. ".nupkg.metadata",
  2469. ".signature.p7s",
  2470. "LICENSE.txt",
  2471. "THIRD-PARTY-NOTICES.txt",
  2472. "build/net462/SkiaSharp.NativeAssets.Win32.targets",
  2473. "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets",
  2474. "lib/net462/_._",
  2475. "lib/net6.0/_._",
  2476. "lib/netcoreapp3.1/_._",
  2477. "lib/netstandard1.3/_._",
  2478. "runtimes/win-arm64/native/libSkiaSharp.dll",
  2479. "runtimes/win-x64/native/libSkiaSharp.dll",
  2480. "runtimes/win-x86/native/libSkiaSharp.dll",
  2481. "skiasharp.nativeassets.win32.2.88.7.nupkg.sha512",
  2482. "skiasharp.nativeassets.win32.nuspec"
  2483. ]
  2484. },
  2485. "System.Collections/4.3.0": {
  2486. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2487. "type": "package",
  2488. "path": "system.collections/4.3.0",
  2489. "files": [
  2490. ".nupkg.metadata",
  2491. ".signature.p7s",
  2492. "ThirdPartyNotices.txt",
  2493. "dotnet_library_license.txt",
  2494. "lib/MonoAndroid10/_._",
  2495. "lib/MonoTouch10/_._",
  2496. "lib/net45/_._",
  2497. "lib/portable-net45+win8+wp8+wpa81/_._",
  2498. "lib/win8/_._",
  2499. "lib/wp80/_._",
  2500. "lib/wpa81/_._",
  2501. "lib/xamarinios10/_._",
  2502. "lib/xamarinmac20/_._",
  2503. "lib/xamarintvos10/_._",
  2504. "lib/xamarinwatchos10/_._",
  2505. "ref/MonoAndroid10/_._",
  2506. "ref/MonoTouch10/_._",
  2507. "ref/net45/_._",
  2508. "ref/netcore50/System.Collections.dll",
  2509. "ref/netcore50/System.Collections.xml",
  2510. "ref/netcore50/de/System.Collections.xml",
  2511. "ref/netcore50/es/System.Collections.xml",
  2512. "ref/netcore50/fr/System.Collections.xml",
  2513. "ref/netcore50/it/System.Collections.xml",
  2514. "ref/netcore50/ja/System.Collections.xml",
  2515. "ref/netcore50/ko/System.Collections.xml",
  2516. "ref/netcore50/ru/System.Collections.xml",
  2517. "ref/netcore50/zh-hans/System.Collections.xml",
  2518. "ref/netcore50/zh-hant/System.Collections.xml",
  2519. "ref/netstandard1.0/System.Collections.dll",
  2520. "ref/netstandard1.0/System.Collections.xml",
  2521. "ref/netstandard1.0/de/System.Collections.xml",
  2522. "ref/netstandard1.0/es/System.Collections.xml",
  2523. "ref/netstandard1.0/fr/System.Collections.xml",
  2524. "ref/netstandard1.0/it/System.Collections.xml",
  2525. "ref/netstandard1.0/ja/System.Collections.xml",
  2526. "ref/netstandard1.0/ko/System.Collections.xml",
  2527. "ref/netstandard1.0/ru/System.Collections.xml",
  2528. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  2529. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  2530. "ref/netstandard1.3/System.Collections.dll",
  2531. "ref/netstandard1.3/System.Collections.xml",
  2532. "ref/netstandard1.3/de/System.Collections.xml",
  2533. "ref/netstandard1.3/es/System.Collections.xml",
  2534. "ref/netstandard1.3/fr/System.Collections.xml",
  2535. "ref/netstandard1.3/it/System.Collections.xml",
  2536. "ref/netstandard1.3/ja/System.Collections.xml",
  2537. "ref/netstandard1.3/ko/System.Collections.xml",
  2538. "ref/netstandard1.3/ru/System.Collections.xml",
  2539. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  2540. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  2541. "ref/portable-net45+win8+wp8+wpa81/_._",
  2542. "ref/win8/_._",
  2543. "ref/wp80/_._",
  2544. "ref/wpa81/_._",
  2545. "ref/xamarinios10/_._",
  2546. "ref/xamarinmac20/_._",
  2547. "ref/xamarintvos10/_._",
  2548. "ref/xamarinwatchos10/_._",
  2549. "system.collections.4.3.0.nupkg.sha512",
  2550. "system.collections.nuspec"
  2551. ]
  2552. },
  2553. "System.Collections.Immutable/5.0.0": {
  2554. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  2555. "type": "package",
  2556. "path": "system.collections.immutable/5.0.0",
  2557. "files": [
  2558. ".nupkg.metadata",
  2559. ".signature.p7s",
  2560. "Icon.png",
  2561. "LICENSE.TXT",
  2562. "THIRD-PARTY-NOTICES.TXT",
  2563. "lib/net461/System.Collections.Immutable.dll",
  2564. "lib/net461/System.Collections.Immutable.xml",
  2565. "lib/netstandard1.0/System.Collections.Immutable.dll",
  2566. "lib/netstandard1.0/System.Collections.Immutable.xml",
  2567. "lib/netstandard1.3/System.Collections.Immutable.dll",
  2568. "lib/netstandard1.3/System.Collections.Immutable.xml",
  2569. "lib/netstandard2.0/System.Collections.Immutable.dll",
  2570. "lib/netstandard2.0/System.Collections.Immutable.xml",
  2571. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  2572. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  2573. "system.collections.immutable.5.0.0.nupkg.sha512",
  2574. "system.collections.immutable.nuspec",
  2575. "useSharedDesignerContext.txt",
  2576. "version.txt"
  2577. ]
  2578. },
  2579. "System.ComponentModel.Annotations/4.5.0": {
  2580. "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  2581. "type": "package",
  2582. "path": "system.componentmodel.annotations/4.5.0",
  2583. "files": [
  2584. ".nupkg.metadata",
  2585. ".signature.p7s",
  2586. "LICENSE.TXT",
  2587. "THIRD-PARTY-NOTICES.TXT",
  2588. "lib/MonoAndroid10/_._",
  2589. "lib/MonoTouch10/_._",
  2590. "lib/net45/_._",
  2591. "lib/net461/System.ComponentModel.Annotations.dll",
  2592. "lib/netcore50/System.ComponentModel.Annotations.dll",
  2593. "lib/netcoreapp2.0/_._",
  2594. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  2595. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  2596. "lib/portable-net45+win8/_._",
  2597. "lib/uap10.0.16299/_._",
  2598. "lib/win8/_._",
  2599. "lib/xamarinios10/_._",
  2600. "lib/xamarinmac20/_._",
  2601. "lib/xamarintvos10/_._",
  2602. "lib/xamarinwatchos10/_._",
  2603. "ref/MonoAndroid10/_._",
  2604. "ref/MonoTouch10/_._",
  2605. "ref/net45/_._",
  2606. "ref/net461/System.ComponentModel.Annotations.dll",
  2607. "ref/net461/System.ComponentModel.Annotations.xml",
  2608. "ref/netcore50/System.ComponentModel.Annotations.dll",
  2609. "ref/netcore50/System.ComponentModel.Annotations.xml",
  2610. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  2611. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  2612. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  2613. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  2614. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  2615. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  2616. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  2617. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  2618. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  2619. "ref/netcoreapp2.0/_._",
  2620. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  2621. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  2622. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  2623. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  2624. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  2625. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  2626. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  2627. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  2628. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  2629. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  2630. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  2631. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  2632. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  2633. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  2634. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  2635. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  2636. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  2637. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  2638. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  2639. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  2640. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  2641. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  2642. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  2643. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  2644. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  2645. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  2646. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  2647. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  2648. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  2649. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  2650. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  2651. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  2652. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  2653. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  2654. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  2655. "ref/portable-net45+win8/_._",
  2656. "ref/uap10.0.16299/_._",
  2657. "ref/win8/_._",
  2658. "ref/xamarinios10/_._",
  2659. "ref/xamarinmac20/_._",
  2660. "ref/xamarintvos10/_._",
  2661. "ref/xamarinwatchos10/_._",
  2662. "system.componentmodel.annotations.4.5.0.nupkg.sha512",
  2663. "system.componentmodel.annotations.nuspec",
  2664. "useSharedDesignerContext.txt",
  2665. "version.txt"
  2666. ]
  2667. },
  2668. "System.Diagnostics.Debug/4.3.0": {
  2669. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2670. "type": "package",
  2671. "path": "system.diagnostics.debug/4.3.0",
  2672. "files": [
  2673. ".nupkg.metadata",
  2674. ".signature.p7s",
  2675. "ThirdPartyNotices.txt",
  2676. "dotnet_library_license.txt",
  2677. "lib/MonoAndroid10/_._",
  2678. "lib/MonoTouch10/_._",
  2679. "lib/net45/_._",
  2680. "lib/portable-net45+win8+wp8+wpa81/_._",
  2681. "lib/win8/_._",
  2682. "lib/wp80/_._",
  2683. "lib/wpa81/_._",
  2684. "lib/xamarinios10/_._",
  2685. "lib/xamarinmac20/_._",
  2686. "lib/xamarintvos10/_._",
  2687. "lib/xamarinwatchos10/_._",
  2688. "ref/MonoAndroid10/_._",
  2689. "ref/MonoTouch10/_._",
  2690. "ref/net45/_._",
  2691. "ref/netcore50/System.Diagnostics.Debug.dll",
  2692. "ref/netcore50/System.Diagnostics.Debug.xml",
  2693. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  2694. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  2695. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  2696. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  2697. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  2698. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  2699. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  2700. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  2701. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  2702. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  2703. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  2704. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  2705. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  2706. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  2707. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  2708. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  2709. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  2710. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  2711. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  2712. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  2713. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  2714. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  2715. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  2716. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  2717. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  2718. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  2719. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  2720. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  2721. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  2722. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  2723. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  2724. "ref/portable-net45+win8+wp8+wpa81/_._",
  2725. "ref/win8/_._",
  2726. "ref/wp80/_._",
  2727. "ref/wpa81/_._",
  2728. "ref/xamarinios10/_._",
  2729. "ref/xamarinmac20/_._",
  2730. "ref/xamarintvos10/_._",
  2731. "ref/xamarinwatchos10/_._",
  2732. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  2733. "system.diagnostics.debug.nuspec"
  2734. ]
  2735. },
  2736. "System.Dynamic.Runtime/4.3.0": {
  2737. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  2738. "type": "package",
  2739. "path": "system.dynamic.runtime/4.3.0",
  2740. "files": [
  2741. ".nupkg.metadata",
  2742. ".signature.p7s",
  2743. "ThirdPartyNotices.txt",
  2744. "dotnet_library_license.txt",
  2745. "lib/MonoAndroid10/_._",
  2746. "lib/MonoTouch10/_._",
  2747. "lib/net45/_._",
  2748. "lib/netcore50/System.Dynamic.Runtime.dll",
  2749. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  2750. "lib/portable-net45+win8+wp8+wpa81/_._",
  2751. "lib/win8/_._",
  2752. "lib/wp80/_._",
  2753. "lib/wpa81/_._",
  2754. "lib/xamarinios10/_._",
  2755. "lib/xamarinmac20/_._",
  2756. "lib/xamarintvos10/_._",
  2757. "lib/xamarinwatchos10/_._",
  2758. "ref/MonoAndroid10/_._",
  2759. "ref/MonoTouch10/_._",
  2760. "ref/net45/_._",
  2761. "ref/netcore50/System.Dynamic.Runtime.dll",
  2762. "ref/netcore50/System.Dynamic.Runtime.xml",
  2763. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  2764. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  2765. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  2766. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  2767. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  2768. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  2769. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  2770. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  2771. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  2772. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  2773. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  2774. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  2775. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  2776. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  2777. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  2778. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  2779. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  2780. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  2781. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  2782. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  2783. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  2784. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  2785. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  2786. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  2787. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  2788. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  2789. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  2790. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  2791. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  2792. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  2793. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  2794. "ref/portable-net45+win8+wp8+wpa81/_._",
  2795. "ref/win8/_._",
  2796. "ref/wp80/_._",
  2797. "ref/wpa81/_._",
  2798. "ref/xamarinios10/_._",
  2799. "ref/xamarinmac20/_._",
  2800. "ref/xamarintvos10/_._",
  2801. "ref/xamarinwatchos10/_._",
  2802. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  2803. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  2804. "system.dynamic.runtime.nuspec"
  2805. ]
  2806. },
  2807. "System.Globalization/4.3.0": {
  2808. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2809. "type": "package",
  2810. "path": "system.globalization/4.3.0",
  2811. "files": [
  2812. ".nupkg.metadata",
  2813. ".signature.p7s",
  2814. "ThirdPartyNotices.txt",
  2815. "dotnet_library_license.txt",
  2816. "lib/MonoAndroid10/_._",
  2817. "lib/MonoTouch10/_._",
  2818. "lib/net45/_._",
  2819. "lib/portable-net45+win8+wp8+wpa81/_._",
  2820. "lib/win8/_._",
  2821. "lib/wp80/_._",
  2822. "lib/wpa81/_._",
  2823. "lib/xamarinios10/_._",
  2824. "lib/xamarinmac20/_._",
  2825. "lib/xamarintvos10/_._",
  2826. "lib/xamarinwatchos10/_._",
  2827. "ref/MonoAndroid10/_._",
  2828. "ref/MonoTouch10/_._",
  2829. "ref/net45/_._",
  2830. "ref/netcore50/System.Globalization.dll",
  2831. "ref/netcore50/System.Globalization.xml",
  2832. "ref/netcore50/de/System.Globalization.xml",
  2833. "ref/netcore50/es/System.Globalization.xml",
  2834. "ref/netcore50/fr/System.Globalization.xml",
  2835. "ref/netcore50/it/System.Globalization.xml",
  2836. "ref/netcore50/ja/System.Globalization.xml",
  2837. "ref/netcore50/ko/System.Globalization.xml",
  2838. "ref/netcore50/ru/System.Globalization.xml",
  2839. "ref/netcore50/zh-hans/System.Globalization.xml",
  2840. "ref/netcore50/zh-hant/System.Globalization.xml",
  2841. "ref/netstandard1.0/System.Globalization.dll",
  2842. "ref/netstandard1.0/System.Globalization.xml",
  2843. "ref/netstandard1.0/de/System.Globalization.xml",
  2844. "ref/netstandard1.0/es/System.Globalization.xml",
  2845. "ref/netstandard1.0/fr/System.Globalization.xml",
  2846. "ref/netstandard1.0/it/System.Globalization.xml",
  2847. "ref/netstandard1.0/ja/System.Globalization.xml",
  2848. "ref/netstandard1.0/ko/System.Globalization.xml",
  2849. "ref/netstandard1.0/ru/System.Globalization.xml",
  2850. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  2851. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  2852. "ref/netstandard1.3/System.Globalization.dll",
  2853. "ref/netstandard1.3/System.Globalization.xml",
  2854. "ref/netstandard1.3/de/System.Globalization.xml",
  2855. "ref/netstandard1.3/es/System.Globalization.xml",
  2856. "ref/netstandard1.3/fr/System.Globalization.xml",
  2857. "ref/netstandard1.3/it/System.Globalization.xml",
  2858. "ref/netstandard1.3/ja/System.Globalization.xml",
  2859. "ref/netstandard1.3/ko/System.Globalization.xml",
  2860. "ref/netstandard1.3/ru/System.Globalization.xml",
  2861. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  2862. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  2863. "ref/portable-net45+win8+wp8+wpa81/_._",
  2864. "ref/win8/_._",
  2865. "ref/wp80/_._",
  2866. "ref/wpa81/_._",
  2867. "ref/xamarinios10/_._",
  2868. "ref/xamarinmac20/_._",
  2869. "ref/xamarintvos10/_._",
  2870. "ref/xamarinwatchos10/_._",
  2871. "system.globalization.4.3.0.nupkg.sha512",
  2872. "system.globalization.nuspec"
  2873. ]
  2874. },
  2875. "System.IO/4.3.0": {
  2876. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2877. "type": "package",
  2878. "path": "system.io/4.3.0",
  2879. "files": [
  2880. ".nupkg.metadata",
  2881. ".signature.p7s",
  2882. "ThirdPartyNotices.txt",
  2883. "dotnet_library_license.txt",
  2884. "lib/MonoAndroid10/_._",
  2885. "lib/MonoTouch10/_._",
  2886. "lib/net45/_._",
  2887. "lib/net462/System.IO.dll",
  2888. "lib/portable-net45+win8+wp8+wpa81/_._",
  2889. "lib/win8/_._",
  2890. "lib/wp80/_._",
  2891. "lib/wpa81/_._",
  2892. "lib/xamarinios10/_._",
  2893. "lib/xamarinmac20/_._",
  2894. "lib/xamarintvos10/_._",
  2895. "lib/xamarinwatchos10/_._",
  2896. "ref/MonoAndroid10/_._",
  2897. "ref/MonoTouch10/_._",
  2898. "ref/net45/_._",
  2899. "ref/net462/System.IO.dll",
  2900. "ref/netcore50/System.IO.dll",
  2901. "ref/netcore50/System.IO.xml",
  2902. "ref/netcore50/de/System.IO.xml",
  2903. "ref/netcore50/es/System.IO.xml",
  2904. "ref/netcore50/fr/System.IO.xml",
  2905. "ref/netcore50/it/System.IO.xml",
  2906. "ref/netcore50/ja/System.IO.xml",
  2907. "ref/netcore50/ko/System.IO.xml",
  2908. "ref/netcore50/ru/System.IO.xml",
  2909. "ref/netcore50/zh-hans/System.IO.xml",
  2910. "ref/netcore50/zh-hant/System.IO.xml",
  2911. "ref/netstandard1.0/System.IO.dll",
  2912. "ref/netstandard1.0/System.IO.xml",
  2913. "ref/netstandard1.0/de/System.IO.xml",
  2914. "ref/netstandard1.0/es/System.IO.xml",
  2915. "ref/netstandard1.0/fr/System.IO.xml",
  2916. "ref/netstandard1.0/it/System.IO.xml",
  2917. "ref/netstandard1.0/ja/System.IO.xml",
  2918. "ref/netstandard1.0/ko/System.IO.xml",
  2919. "ref/netstandard1.0/ru/System.IO.xml",
  2920. "ref/netstandard1.0/zh-hans/System.IO.xml",
  2921. "ref/netstandard1.0/zh-hant/System.IO.xml",
  2922. "ref/netstandard1.3/System.IO.dll",
  2923. "ref/netstandard1.3/System.IO.xml",
  2924. "ref/netstandard1.3/de/System.IO.xml",
  2925. "ref/netstandard1.3/es/System.IO.xml",
  2926. "ref/netstandard1.3/fr/System.IO.xml",
  2927. "ref/netstandard1.3/it/System.IO.xml",
  2928. "ref/netstandard1.3/ja/System.IO.xml",
  2929. "ref/netstandard1.3/ko/System.IO.xml",
  2930. "ref/netstandard1.3/ru/System.IO.xml",
  2931. "ref/netstandard1.3/zh-hans/System.IO.xml",
  2932. "ref/netstandard1.3/zh-hant/System.IO.xml",
  2933. "ref/netstandard1.5/System.IO.dll",
  2934. "ref/netstandard1.5/System.IO.xml",
  2935. "ref/netstandard1.5/de/System.IO.xml",
  2936. "ref/netstandard1.5/es/System.IO.xml",
  2937. "ref/netstandard1.5/fr/System.IO.xml",
  2938. "ref/netstandard1.5/it/System.IO.xml",
  2939. "ref/netstandard1.5/ja/System.IO.xml",
  2940. "ref/netstandard1.5/ko/System.IO.xml",
  2941. "ref/netstandard1.5/ru/System.IO.xml",
  2942. "ref/netstandard1.5/zh-hans/System.IO.xml",
  2943. "ref/netstandard1.5/zh-hant/System.IO.xml",
  2944. "ref/portable-net45+win8+wp8+wpa81/_._",
  2945. "ref/win8/_._",
  2946. "ref/wp80/_._",
  2947. "ref/wpa81/_._",
  2948. "ref/xamarinios10/_._",
  2949. "ref/xamarinmac20/_._",
  2950. "ref/xamarintvos10/_._",
  2951. "ref/xamarinwatchos10/_._",
  2952. "system.io.4.3.0.nupkg.sha512",
  2953. "system.io.nuspec"
  2954. ]
  2955. },
  2956. "System.IO.Pipelines/6.0.0": {
  2957. "sha512": "mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
  2958. "type": "package",
  2959. "path": "system.io.pipelines/6.0.0",
  2960. "files": [
  2961. ".nupkg.metadata",
  2962. ".signature.p7s",
  2963. "Icon.png",
  2964. "LICENSE.TXT",
  2965. "THIRD-PARTY-NOTICES.TXT",
  2966. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  2967. "buildTransitive/netcoreapp3.1/_._",
  2968. "lib/net461/System.IO.Pipelines.dll",
  2969. "lib/net461/System.IO.Pipelines.xml",
  2970. "lib/net6.0/System.IO.Pipelines.dll",
  2971. "lib/net6.0/System.IO.Pipelines.xml",
  2972. "lib/netcoreapp3.1/System.IO.Pipelines.dll",
  2973. "lib/netcoreapp3.1/System.IO.Pipelines.xml",
  2974. "lib/netstandard2.0/System.IO.Pipelines.dll",
  2975. "lib/netstandard2.0/System.IO.Pipelines.xml",
  2976. "system.io.pipelines.6.0.0.nupkg.sha512",
  2977. "system.io.pipelines.nuspec",
  2978. "useSharedDesignerContext.txt"
  2979. ]
  2980. },
  2981. "System.Linq/4.3.0": {
  2982. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2983. "type": "package",
  2984. "path": "system.linq/4.3.0",
  2985. "files": [
  2986. ".nupkg.metadata",
  2987. ".signature.p7s",
  2988. "ThirdPartyNotices.txt",
  2989. "dotnet_library_license.txt",
  2990. "lib/MonoAndroid10/_._",
  2991. "lib/MonoTouch10/_._",
  2992. "lib/net45/_._",
  2993. "lib/net463/System.Linq.dll",
  2994. "lib/netcore50/System.Linq.dll",
  2995. "lib/netstandard1.6/System.Linq.dll",
  2996. "lib/portable-net45+win8+wp8+wpa81/_._",
  2997. "lib/win8/_._",
  2998. "lib/wp80/_._",
  2999. "lib/wpa81/_._",
  3000. "lib/xamarinios10/_._",
  3001. "lib/xamarinmac20/_._",
  3002. "lib/xamarintvos10/_._",
  3003. "lib/xamarinwatchos10/_._",
  3004. "ref/MonoAndroid10/_._",
  3005. "ref/MonoTouch10/_._",
  3006. "ref/net45/_._",
  3007. "ref/net463/System.Linq.dll",
  3008. "ref/netcore50/System.Linq.dll",
  3009. "ref/netcore50/System.Linq.xml",
  3010. "ref/netcore50/de/System.Linq.xml",
  3011. "ref/netcore50/es/System.Linq.xml",
  3012. "ref/netcore50/fr/System.Linq.xml",
  3013. "ref/netcore50/it/System.Linq.xml",
  3014. "ref/netcore50/ja/System.Linq.xml",
  3015. "ref/netcore50/ko/System.Linq.xml",
  3016. "ref/netcore50/ru/System.Linq.xml",
  3017. "ref/netcore50/zh-hans/System.Linq.xml",
  3018. "ref/netcore50/zh-hant/System.Linq.xml",
  3019. "ref/netstandard1.0/System.Linq.dll",
  3020. "ref/netstandard1.0/System.Linq.xml",
  3021. "ref/netstandard1.0/de/System.Linq.xml",
  3022. "ref/netstandard1.0/es/System.Linq.xml",
  3023. "ref/netstandard1.0/fr/System.Linq.xml",
  3024. "ref/netstandard1.0/it/System.Linq.xml",
  3025. "ref/netstandard1.0/ja/System.Linq.xml",
  3026. "ref/netstandard1.0/ko/System.Linq.xml",
  3027. "ref/netstandard1.0/ru/System.Linq.xml",
  3028. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  3029. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  3030. "ref/netstandard1.6/System.Linq.dll",
  3031. "ref/netstandard1.6/System.Linq.xml",
  3032. "ref/netstandard1.6/de/System.Linq.xml",
  3033. "ref/netstandard1.6/es/System.Linq.xml",
  3034. "ref/netstandard1.6/fr/System.Linq.xml",
  3035. "ref/netstandard1.6/it/System.Linq.xml",
  3036. "ref/netstandard1.6/ja/System.Linq.xml",
  3037. "ref/netstandard1.6/ko/System.Linq.xml",
  3038. "ref/netstandard1.6/ru/System.Linq.xml",
  3039. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  3040. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  3041. "ref/portable-net45+win8+wp8+wpa81/_._",
  3042. "ref/win8/_._",
  3043. "ref/wp80/_._",
  3044. "ref/wpa81/_._",
  3045. "ref/xamarinios10/_._",
  3046. "ref/xamarinmac20/_._",
  3047. "ref/xamarintvos10/_._",
  3048. "ref/xamarinwatchos10/_._",
  3049. "system.linq.4.3.0.nupkg.sha512",
  3050. "system.linq.nuspec"
  3051. ]
  3052. },
  3053. "System.Linq.Expressions/4.3.0": {
  3054. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  3055. "type": "package",
  3056. "path": "system.linq.expressions/4.3.0",
  3057. "files": [
  3058. ".nupkg.metadata",
  3059. ".signature.p7s",
  3060. "ThirdPartyNotices.txt",
  3061. "dotnet_library_license.txt",
  3062. "lib/MonoAndroid10/_._",
  3063. "lib/MonoTouch10/_._",
  3064. "lib/net45/_._",
  3065. "lib/net463/System.Linq.Expressions.dll",
  3066. "lib/netcore50/System.Linq.Expressions.dll",
  3067. "lib/netstandard1.6/System.Linq.Expressions.dll",
  3068. "lib/portable-net45+win8+wp8+wpa81/_._",
  3069. "lib/win8/_._",
  3070. "lib/wp80/_._",
  3071. "lib/wpa81/_._",
  3072. "lib/xamarinios10/_._",
  3073. "lib/xamarinmac20/_._",
  3074. "lib/xamarintvos10/_._",
  3075. "lib/xamarinwatchos10/_._",
  3076. "ref/MonoAndroid10/_._",
  3077. "ref/MonoTouch10/_._",
  3078. "ref/net45/_._",
  3079. "ref/net463/System.Linq.Expressions.dll",
  3080. "ref/netcore50/System.Linq.Expressions.dll",
  3081. "ref/netcore50/System.Linq.Expressions.xml",
  3082. "ref/netcore50/de/System.Linq.Expressions.xml",
  3083. "ref/netcore50/es/System.Linq.Expressions.xml",
  3084. "ref/netcore50/fr/System.Linq.Expressions.xml",
  3085. "ref/netcore50/it/System.Linq.Expressions.xml",
  3086. "ref/netcore50/ja/System.Linq.Expressions.xml",
  3087. "ref/netcore50/ko/System.Linq.Expressions.xml",
  3088. "ref/netcore50/ru/System.Linq.Expressions.xml",
  3089. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  3090. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  3091. "ref/netstandard1.0/System.Linq.Expressions.dll",
  3092. "ref/netstandard1.0/System.Linq.Expressions.xml",
  3093. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  3094. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  3095. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  3096. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  3097. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  3098. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  3099. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  3100. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  3101. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  3102. "ref/netstandard1.3/System.Linq.Expressions.dll",
  3103. "ref/netstandard1.3/System.Linq.Expressions.xml",
  3104. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  3105. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  3106. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  3107. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  3108. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  3109. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  3110. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  3111. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  3112. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  3113. "ref/netstandard1.6/System.Linq.Expressions.dll",
  3114. "ref/netstandard1.6/System.Linq.Expressions.xml",
  3115. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  3116. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  3117. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  3118. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  3119. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  3120. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  3121. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  3122. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  3123. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  3124. "ref/portable-net45+win8+wp8+wpa81/_._",
  3125. "ref/win8/_._",
  3126. "ref/wp80/_._",
  3127. "ref/wpa81/_._",
  3128. "ref/xamarinios10/_._",
  3129. "ref/xamarinmac20/_._",
  3130. "ref/xamarintvos10/_._",
  3131. "ref/xamarinwatchos10/_._",
  3132. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  3133. "system.linq.expressions.4.3.0.nupkg.sha512",
  3134. "system.linq.expressions.nuspec"
  3135. ]
  3136. },
  3137. "System.Memory/4.5.4": {
  3138. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  3139. "type": "package",
  3140. "path": "system.memory/4.5.4",
  3141. "files": [
  3142. ".nupkg.metadata",
  3143. ".signature.p7s",
  3144. "LICENSE.TXT",
  3145. "THIRD-PARTY-NOTICES.TXT",
  3146. "lib/net461/System.Memory.dll",
  3147. "lib/net461/System.Memory.xml",
  3148. "lib/netcoreapp2.1/_._",
  3149. "lib/netstandard1.1/System.Memory.dll",
  3150. "lib/netstandard1.1/System.Memory.xml",
  3151. "lib/netstandard2.0/System.Memory.dll",
  3152. "lib/netstandard2.0/System.Memory.xml",
  3153. "ref/netcoreapp2.1/_._",
  3154. "system.memory.4.5.4.nupkg.sha512",
  3155. "system.memory.nuspec",
  3156. "useSharedDesignerContext.txt",
  3157. "version.txt"
  3158. ]
  3159. },
  3160. "System.Numerics.Vectors/4.5.0": {
  3161. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  3162. "type": "package",
  3163. "path": "system.numerics.vectors/4.5.0",
  3164. "files": [
  3165. ".nupkg.metadata",
  3166. ".signature.p7s",
  3167. "LICENSE.TXT",
  3168. "THIRD-PARTY-NOTICES.TXT",
  3169. "lib/MonoAndroid10/_._",
  3170. "lib/MonoTouch10/_._",
  3171. "lib/net46/System.Numerics.Vectors.dll",
  3172. "lib/net46/System.Numerics.Vectors.xml",
  3173. "lib/netcoreapp2.0/_._",
  3174. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  3175. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  3176. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  3177. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  3178. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  3179. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  3180. "lib/uap10.0.16299/_._",
  3181. "lib/xamarinios10/_._",
  3182. "lib/xamarinmac20/_._",
  3183. "lib/xamarintvos10/_._",
  3184. "lib/xamarinwatchos10/_._",
  3185. "ref/MonoAndroid10/_._",
  3186. "ref/MonoTouch10/_._",
  3187. "ref/net45/System.Numerics.Vectors.dll",
  3188. "ref/net45/System.Numerics.Vectors.xml",
  3189. "ref/net46/System.Numerics.Vectors.dll",
  3190. "ref/net46/System.Numerics.Vectors.xml",
  3191. "ref/netcoreapp2.0/_._",
  3192. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  3193. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  3194. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  3195. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  3196. "ref/uap10.0.16299/_._",
  3197. "ref/xamarinios10/_._",
  3198. "ref/xamarinmac20/_._",
  3199. "ref/xamarintvos10/_._",
  3200. "ref/xamarinwatchos10/_._",
  3201. "system.numerics.vectors.4.5.0.nupkg.sha512",
  3202. "system.numerics.vectors.nuspec",
  3203. "useSharedDesignerContext.txt",
  3204. "version.txt"
  3205. ]
  3206. },
  3207. "System.ObjectModel/4.3.0": {
  3208. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  3209. "type": "package",
  3210. "path": "system.objectmodel/4.3.0",
  3211. "files": [
  3212. ".nupkg.metadata",
  3213. ".signature.p7s",
  3214. "ThirdPartyNotices.txt",
  3215. "dotnet_library_license.txt",
  3216. "lib/MonoAndroid10/_._",
  3217. "lib/MonoTouch10/_._",
  3218. "lib/net45/_._",
  3219. "lib/netcore50/System.ObjectModel.dll",
  3220. "lib/netstandard1.3/System.ObjectModel.dll",
  3221. "lib/portable-net45+win8+wp8+wpa81/_._",
  3222. "lib/win8/_._",
  3223. "lib/wp80/_._",
  3224. "lib/wpa81/_._",
  3225. "lib/xamarinios10/_._",
  3226. "lib/xamarinmac20/_._",
  3227. "lib/xamarintvos10/_._",
  3228. "lib/xamarinwatchos10/_._",
  3229. "ref/MonoAndroid10/_._",
  3230. "ref/MonoTouch10/_._",
  3231. "ref/net45/_._",
  3232. "ref/netcore50/System.ObjectModel.dll",
  3233. "ref/netcore50/System.ObjectModel.xml",
  3234. "ref/netcore50/de/System.ObjectModel.xml",
  3235. "ref/netcore50/es/System.ObjectModel.xml",
  3236. "ref/netcore50/fr/System.ObjectModel.xml",
  3237. "ref/netcore50/it/System.ObjectModel.xml",
  3238. "ref/netcore50/ja/System.ObjectModel.xml",
  3239. "ref/netcore50/ko/System.ObjectModel.xml",
  3240. "ref/netcore50/ru/System.ObjectModel.xml",
  3241. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  3242. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  3243. "ref/netstandard1.0/System.ObjectModel.dll",
  3244. "ref/netstandard1.0/System.ObjectModel.xml",
  3245. "ref/netstandard1.0/de/System.ObjectModel.xml",
  3246. "ref/netstandard1.0/es/System.ObjectModel.xml",
  3247. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  3248. "ref/netstandard1.0/it/System.ObjectModel.xml",
  3249. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  3250. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  3251. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  3252. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  3253. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  3254. "ref/netstandard1.3/System.ObjectModel.dll",
  3255. "ref/netstandard1.3/System.ObjectModel.xml",
  3256. "ref/netstandard1.3/de/System.ObjectModel.xml",
  3257. "ref/netstandard1.3/es/System.ObjectModel.xml",
  3258. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  3259. "ref/netstandard1.3/it/System.ObjectModel.xml",
  3260. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  3261. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  3262. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  3263. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  3264. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  3265. "ref/portable-net45+win8+wp8+wpa81/_._",
  3266. "ref/win8/_._",
  3267. "ref/wp80/_._",
  3268. "ref/wpa81/_._",
  3269. "ref/xamarinios10/_._",
  3270. "ref/xamarinmac20/_._",
  3271. "ref/xamarintvos10/_._",
  3272. "ref/xamarinwatchos10/_._",
  3273. "system.objectmodel.4.3.0.nupkg.sha512",
  3274. "system.objectmodel.nuspec"
  3275. ]
  3276. },
  3277. "System.Reflection/4.3.0": {
  3278. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  3279. "type": "package",
  3280. "path": "system.reflection/4.3.0",
  3281. "files": [
  3282. ".nupkg.metadata",
  3283. ".signature.p7s",
  3284. "ThirdPartyNotices.txt",
  3285. "dotnet_library_license.txt",
  3286. "lib/MonoAndroid10/_._",
  3287. "lib/MonoTouch10/_._",
  3288. "lib/net45/_._",
  3289. "lib/net462/System.Reflection.dll",
  3290. "lib/portable-net45+win8+wp8+wpa81/_._",
  3291. "lib/win8/_._",
  3292. "lib/wp80/_._",
  3293. "lib/wpa81/_._",
  3294. "lib/xamarinios10/_._",
  3295. "lib/xamarinmac20/_._",
  3296. "lib/xamarintvos10/_._",
  3297. "lib/xamarinwatchos10/_._",
  3298. "ref/MonoAndroid10/_._",
  3299. "ref/MonoTouch10/_._",
  3300. "ref/net45/_._",
  3301. "ref/net462/System.Reflection.dll",
  3302. "ref/netcore50/System.Reflection.dll",
  3303. "ref/netcore50/System.Reflection.xml",
  3304. "ref/netcore50/de/System.Reflection.xml",
  3305. "ref/netcore50/es/System.Reflection.xml",
  3306. "ref/netcore50/fr/System.Reflection.xml",
  3307. "ref/netcore50/it/System.Reflection.xml",
  3308. "ref/netcore50/ja/System.Reflection.xml",
  3309. "ref/netcore50/ko/System.Reflection.xml",
  3310. "ref/netcore50/ru/System.Reflection.xml",
  3311. "ref/netcore50/zh-hans/System.Reflection.xml",
  3312. "ref/netcore50/zh-hant/System.Reflection.xml",
  3313. "ref/netstandard1.0/System.Reflection.dll",
  3314. "ref/netstandard1.0/System.Reflection.xml",
  3315. "ref/netstandard1.0/de/System.Reflection.xml",
  3316. "ref/netstandard1.0/es/System.Reflection.xml",
  3317. "ref/netstandard1.0/fr/System.Reflection.xml",
  3318. "ref/netstandard1.0/it/System.Reflection.xml",
  3319. "ref/netstandard1.0/ja/System.Reflection.xml",
  3320. "ref/netstandard1.0/ko/System.Reflection.xml",
  3321. "ref/netstandard1.0/ru/System.Reflection.xml",
  3322. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  3323. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  3324. "ref/netstandard1.3/System.Reflection.dll",
  3325. "ref/netstandard1.3/System.Reflection.xml",
  3326. "ref/netstandard1.3/de/System.Reflection.xml",
  3327. "ref/netstandard1.3/es/System.Reflection.xml",
  3328. "ref/netstandard1.3/fr/System.Reflection.xml",
  3329. "ref/netstandard1.3/it/System.Reflection.xml",
  3330. "ref/netstandard1.3/ja/System.Reflection.xml",
  3331. "ref/netstandard1.3/ko/System.Reflection.xml",
  3332. "ref/netstandard1.3/ru/System.Reflection.xml",
  3333. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  3334. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  3335. "ref/netstandard1.5/System.Reflection.dll",
  3336. "ref/netstandard1.5/System.Reflection.xml",
  3337. "ref/netstandard1.5/de/System.Reflection.xml",
  3338. "ref/netstandard1.5/es/System.Reflection.xml",
  3339. "ref/netstandard1.5/fr/System.Reflection.xml",
  3340. "ref/netstandard1.5/it/System.Reflection.xml",
  3341. "ref/netstandard1.5/ja/System.Reflection.xml",
  3342. "ref/netstandard1.5/ko/System.Reflection.xml",
  3343. "ref/netstandard1.5/ru/System.Reflection.xml",
  3344. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  3345. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  3346. "ref/portable-net45+win8+wp8+wpa81/_._",
  3347. "ref/win8/_._",
  3348. "ref/wp80/_._",
  3349. "ref/wpa81/_._",
  3350. "ref/xamarinios10/_._",
  3351. "ref/xamarinmac20/_._",
  3352. "ref/xamarintvos10/_._",
  3353. "ref/xamarinwatchos10/_._",
  3354. "system.reflection.4.3.0.nupkg.sha512",
  3355. "system.reflection.nuspec"
  3356. ]
  3357. },
  3358. "System.Reflection.Emit/4.3.0": {
  3359. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  3360. "type": "package",
  3361. "path": "system.reflection.emit/4.3.0",
  3362. "files": [
  3363. ".nupkg.metadata",
  3364. ".signature.p7s",
  3365. "ThirdPartyNotices.txt",
  3366. "dotnet_library_license.txt",
  3367. "lib/MonoAndroid10/_._",
  3368. "lib/monotouch10/_._",
  3369. "lib/net45/_._",
  3370. "lib/netcore50/System.Reflection.Emit.dll",
  3371. "lib/netstandard1.3/System.Reflection.Emit.dll",
  3372. "lib/xamarinios10/_._",
  3373. "lib/xamarinmac20/_._",
  3374. "lib/xamarintvos10/_._",
  3375. "lib/xamarinwatchos10/_._",
  3376. "ref/MonoAndroid10/_._",
  3377. "ref/net45/_._",
  3378. "ref/netstandard1.1/System.Reflection.Emit.dll",
  3379. "ref/netstandard1.1/System.Reflection.Emit.xml",
  3380. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  3381. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  3382. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  3383. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  3384. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  3385. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  3386. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  3387. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  3388. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  3389. "ref/xamarinmac20/_._",
  3390. "system.reflection.emit.4.3.0.nupkg.sha512",
  3391. "system.reflection.emit.nuspec"
  3392. ]
  3393. },
  3394. "System.Reflection.Emit.ILGeneration/4.3.0": {
  3395. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  3396. "type": "package",
  3397. "path": "system.reflection.emit.ilgeneration/4.3.0",
  3398. "files": [
  3399. ".nupkg.metadata",
  3400. ".signature.p7s",
  3401. "ThirdPartyNotices.txt",
  3402. "dotnet_library_license.txt",
  3403. "lib/MonoAndroid10/_._",
  3404. "lib/MonoTouch10/_._",
  3405. "lib/net45/_._",
  3406. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  3407. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  3408. "lib/portable-net45+wp8/_._",
  3409. "lib/wp80/_._",
  3410. "lib/xamarinios10/_._",
  3411. "lib/xamarinmac20/_._",
  3412. "lib/xamarintvos10/_._",
  3413. "lib/xamarinwatchos10/_._",
  3414. "ref/MonoAndroid10/_._",
  3415. "ref/MonoTouch10/_._",
  3416. "ref/net45/_._",
  3417. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  3418. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  3419. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  3420. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  3421. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  3422. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  3423. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  3424. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  3425. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  3426. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  3427. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  3428. "ref/portable-net45+wp8/_._",
  3429. "ref/wp80/_._",
  3430. "ref/xamarinios10/_._",
  3431. "ref/xamarinmac20/_._",
  3432. "ref/xamarintvos10/_._",
  3433. "ref/xamarinwatchos10/_._",
  3434. "runtimes/aot/lib/netcore50/_._",
  3435. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  3436. "system.reflection.emit.ilgeneration.nuspec"
  3437. ]
  3438. },
  3439. "System.Reflection.Emit.Lightweight/4.3.0": {
  3440. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  3441. "type": "package",
  3442. "path": "system.reflection.emit.lightweight/4.3.0",
  3443. "files": [
  3444. ".nupkg.metadata",
  3445. ".signature.p7s",
  3446. "ThirdPartyNotices.txt",
  3447. "dotnet_library_license.txt",
  3448. "lib/MonoAndroid10/_._",
  3449. "lib/MonoTouch10/_._",
  3450. "lib/net45/_._",
  3451. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  3452. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  3453. "lib/portable-net45+wp8/_._",
  3454. "lib/wp80/_._",
  3455. "lib/xamarinios10/_._",
  3456. "lib/xamarinmac20/_._",
  3457. "lib/xamarintvos10/_._",
  3458. "lib/xamarinwatchos10/_._",
  3459. "ref/MonoAndroid10/_._",
  3460. "ref/MonoTouch10/_._",
  3461. "ref/net45/_._",
  3462. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  3463. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  3464. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  3465. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  3466. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  3467. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  3468. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  3469. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  3470. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  3471. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  3472. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  3473. "ref/portable-net45+wp8/_._",
  3474. "ref/wp80/_._",
  3475. "ref/xamarinios10/_._",
  3476. "ref/xamarinmac20/_._",
  3477. "ref/xamarintvos10/_._",
  3478. "ref/xamarinwatchos10/_._",
  3479. "runtimes/aot/lib/netcore50/_._",
  3480. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  3481. "system.reflection.emit.lightweight.nuspec"
  3482. ]
  3483. },
  3484. "System.Reflection.Extensions/4.3.0": {
  3485. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  3486. "type": "package",
  3487. "path": "system.reflection.extensions/4.3.0",
  3488. "files": [
  3489. ".nupkg.metadata",
  3490. ".signature.p7s",
  3491. "ThirdPartyNotices.txt",
  3492. "dotnet_library_license.txt",
  3493. "lib/MonoAndroid10/_._",
  3494. "lib/MonoTouch10/_._",
  3495. "lib/net45/_._",
  3496. "lib/portable-net45+win8+wp8+wpa81/_._",
  3497. "lib/win8/_._",
  3498. "lib/wp80/_._",
  3499. "lib/wpa81/_._",
  3500. "lib/xamarinios10/_._",
  3501. "lib/xamarinmac20/_._",
  3502. "lib/xamarintvos10/_._",
  3503. "lib/xamarinwatchos10/_._",
  3504. "ref/MonoAndroid10/_._",
  3505. "ref/MonoTouch10/_._",
  3506. "ref/net45/_._",
  3507. "ref/netcore50/System.Reflection.Extensions.dll",
  3508. "ref/netcore50/System.Reflection.Extensions.xml",
  3509. "ref/netcore50/de/System.Reflection.Extensions.xml",
  3510. "ref/netcore50/es/System.Reflection.Extensions.xml",
  3511. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  3512. "ref/netcore50/it/System.Reflection.Extensions.xml",
  3513. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  3514. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  3515. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  3516. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  3517. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  3518. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  3519. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  3520. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  3521. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  3522. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  3523. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  3524. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  3525. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  3526. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  3527. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  3528. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  3529. "ref/portable-net45+win8+wp8+wpa81/_._",
  3530. "ref/win8/_._",
  3531. "ref/wp80/_._",
  3532. "ref/wpa81/_._",
  3533. "ref/xamarinios10/_._",
  3534. "ref/xamarinmac20/_._",
  3535. "ref/xamarintvos10/_._",
  3536. "ref/xamarinwatchos10/_._",
  3537. "system.reflection.extensions.4.3.0.nupkg.sha512",
  3538. "system.reflection.extensions.nuspec"
  3539. ]
  3540. },
  3541. "System.Reflection.Metadata/5.0.0": {
  3542. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  3543. "type": "package",
  3544. "path": "system.reflection.metadata/5.0.0",
  3545. "files": [
  3546. ".nupkg.metadata",
  3547. ".signature.p7s",
  3548. "Icon.png",
  3549. "LICENSE.TXT",
  3550. "THIRD-PARTY-NOTICES.TXT",
  3551. "lib/net461/System.Reflection.Metadata.dll",
  3552. "lib/net461/System.Reflection.Metadata.xml",
  3553. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  3554. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  3555. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  3556. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  3557. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  3558. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  3559. "system.reflection.metadata.5.0.0.nupkg.sha512",
  3560. "system.reflection.metadata.nuspec",
  3561. "useSharedDesignerContext.txt",
  3562. "version.txt"
  3563. ]
  3564. },
  3565. "System.Reflection.Primitives/4.3.0": {
  3566. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  3567. "type": "package",
  3568. "path": "system.reflection.primitives/4.3.0",
  3569. "files": [
  3570. ".nupkg.metadata",
  3571. ".signature.p7s",
  3572. "ThirdPartyNotices.txt",
  3573. "dotnet_library_license.txt",
  3574. "lib/MonoAndroid10/_._",
  3575. "lib/MonoTouch10/_._",
  3576. "lib/net45/_._",
  3577. "lib/portable-net45+win8+wp8+wpa81/_._",
  3578. "lib/win8/_._",
  3579. "lib/wp80/_._",
  3580. "lib/wpa81/_._",
  3581. "lib/xamarinios10/_._",
  3582. "lib/xamarinmac20/_._",
  3583. "lib/xamarintvos10/_._",
  3584. "lib/xamarinwatchos10/_._",
  3585. "ref/MonoAndroid10/_._",
  3586. "ref/MonoTouch10/_._",
  3587. "ref/net45/_._",
  3588. "ref/netcore50/System.Reflection.Primitives.dll",
  3589. "ref/netcore50/System.Reflection.Primitives.xml",
  3590. "ref/netcore50/de/System.Reflection.Primitives.xml",
  3591. "ref/netcore50/es/System.Reflection.Primitives.xml",
  3592. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  3593. "ref/netcore50/it/System.Reflection.Primitives.xml",
  3594. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  3595. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  3596. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  3597. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  3598. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  3599. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  3600. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  3601. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  3602. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  3603. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  3604. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  3605. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  3606. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  3607. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  3608. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  3609. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  3610. "ref/portable-net45+win8+wp8+wpa81/_._",
  3611. "ref/win8/_._",
  3612. "ref/wp80/_._",
  3613. "ref/wpa81/_._",
  3614. "ref/xamarinios10/_._",
  3615. "ref/xamarinmac20/_._",
  3616. "ref/xamarintvos10/_._",
  3617. "ref/xamarinwatchos10/_._",
  3618. "system.reflection.primitives.4.3.0.nupkg.sha512",
  3619. "system.reflection.primitives.nuspec"
  3620. ]
  3621. },
  3622. "System.Reflection.TypeExtensions/4.3.0": {
  3623. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  3624. "type": "package",
  3625. "path": "system.reflection.typeextensions/4.3.0",
  3626. "files": [
  3627. ".nupkg.metadata",
  3628. ".signature.p7s",
  3629. "ThirdPartyNotices.txt",
  3630. "dotnet_library_license.txt",
  3631. "lib/MonoAndroid10/_._",
  3632. "lib/MonoTouch10/_._",
  3633. "lib/net46/System.Reflection.TypeExtensions.dll",
  3634. "lib/net462/System.Reflection.TypeExtensions.dll",
  3635. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  3636. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  3637. "lib/xamarinios10/_._",
  3638. "lib/xamarinmac20/_._",
  3639. "lib/xamarintvos10/_._",
  3640. "lib/xamarinwatchos10/_._",
  3641. "ref/MonoAndroid10/_._",
  3642. "ref/MonoTouch10/_._",
  3643. "ref/net46/System.Reflection.TypeExtensions.dll",
  3644. "ref/net462/System.Reflection.TypeExtensions.dll",
  3645. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  3646. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  3647. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  3648. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  3649. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  3650. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  3651. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  3652. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  3653. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  3654. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  3655. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  3656. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  3657. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  3658. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  3659. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  3660. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  3661. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  3662. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  3663. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  3664. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  3665. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  3666. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  3667. "ref/xamarinios10/_._",
  3668. "ref/xamarinmac20/_._",
  3669. "ref/xamarintvos10/_._",
  3670. "ref/xamarinwatchos10/_._",
  3671. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  3672. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  3673. "system.reflection.typeextensions.nuspec"
  3674. ]
  3675. },
  3676. "System.Resources.ResourceManager/4.3.0": {
  3677. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3678. "type": "package",
  3679. "path": "system.resources.resourcemanager/4.3.0",
  3680. "files": [
  3681. ".nupkg.metadata",
  3682. ".signature.p7s",
  3683. "ThirdPartyNotices.txt",
  3684. "dotnet_library_license.txt",
  3685. "lib/MonoAndroid10/_._",
  3686. "lib/MonoTouch10/_._",
  3687. "lib/net45/_._",
  3688. "lib/portable-net45+win8+wp8+wpa81/_._",
  3689. "lib/win8/_._",
  3690. "lib/wp80/_._",
  3691. "lib/wpa81/_._",
  3692. "lib/xamarinios10/_._",
  3693. "lib/xamarinmac20/_._",
  3694. "lib/xamarintvos10/_._",
  3695. "lib/xamarinwatchos10/_._",
  3696. "ref/MonoAndroid10/_._",
  3697. "ref/MonoTouch10/_._",
  3698. "ref/net45/_._",
  3699. "ref/netcore50/System.Resources.ResourceManager.dll",
  3700. "ref/netcore50/System.Resources.ResourceManager.xml",
  3701. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  3702. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  3703. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  3704. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  3705. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  3706. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  3707. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  3708. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  3709. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  3710. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  3711. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  3712. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  3713. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  3714. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  3715. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  3716. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  3717. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  3718. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  3719. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  3720. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  3721. "ref/portable-net45+win8+wp8+wpa81/_._",
  3722. "ref/win8/_._",
  3723. "ref/wp80/_._",
  3724. "ref/wpa81/_._",
  3725. "ref/xamarinios10/_._",
  3726. "ref/xamarinmac20/_._",
  3727. "ref/xamarintvos10/_._",
  3728. "ref/xamarinwatchos10/_._",
  3729. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  3730. "system.resources.resourcemanager.nuspec"
  3731. ]
  3732. },
  3733. "System.Runtime/4.3.0": {
  3734. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3735. "type": "package",
  3736. "path": "system.runtime/4.3.0",
  3737. "files": [
  3738. ".nupkg.metadata",
  3739. ".signature.p7s",
  3740. "ThirdPartyNotices.txt",
  3741. "dotnet_library_license.txt",
  3742. "lib/MonoAndroid10/_._",
  3743. "lib/MonoTouch10/_._",
  3744. "lib/net45/_._",
  3745. "lib/net462/System.Runtime.dll",
  3746. "lib/portable-net45+win8+wp80+wpa81/_._",
  3747. "lib/win8/_._",
  3748. "lib/wp80/_._",
  3749. "lib/wpa81/_._",
  3750. "lib/xamarinios10/_._",
  3751. "lib/xamarinmac20/_._",
  3752. "lib/xamarintvos10/_._",
  3753. "lib/xamarinwatchos10/_._",
  3754. "ref/MonoAndroid10/_._",
  3755. "ref/MonoTouch10/_._",
  3756. "ref/net45/_._",
  3757. "ref/net462/System.Runtime.dll",
  3758. "ref/netcore50/System.Runtime.dll",
  3759. "ref/netcore50/System.Runtime.xml",
  3760. "ref/netcore50/de/System.Runtime.xml",
  3761. "ref/netcore50/es/System.Runtime.xml",
  3762. "ref/netcore50/fr/System.Runtime.xml",
  3763. "ref/netcore50/it/System.Runtime.xml",
  3764. "ref/netcore50/ja/System.Runtime.xml",
  3765. "ref/netcore50/ko/System.Runtime.xml",
  3766. "ref/netcore50/ru/System.Runtime.xml",
  3767. "ref/netcore50/zh-hans/System.Runtime.xml",
  3768. "ref/netcore50/zh-hant/System.Runtime.xml",
  3769. "ref/netstandard1.0/System.Runtime.dll",
  3770. "ref/netstandard1.0/System.Runtime.xml",
  3771. "ref/netstandard1.0/de/System.Runtime.xml",
  3772. "ref/netstandard1.0/es/System.Runtime.xml",
  3773. "ref/netstandard1.0/fr/System.Runtime.xml",
  3774. "ref/netstandard1.0/it/System.Runtime.xml",
  3775. "ref/netstandard1.0/ja/System.Runtime.xml",
  3776. "ref/netstandard1.0/ko/System.Runtime.xml",
  3777. "ref/netstandard1.0/ru/System.Runtime.xml",
  3778. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3779. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3780. "ref/netstandard1.2/System.Runtime.dll",
  3781. "ref/netstandard1.2/System.Runtime.xml",
  3782. "ref/netstandard1.2/de/System.Runtime.xml",
  3783. "ref/netstandard1.2/es/System.Runtime.xml",
  3784. "ref/netstandard1.2/fr/System.Runtime.xml",
  3785. "ref/netstandard1.2/it/System.Runtime.xml",
  3786. "ref/netstandard1.2/ja/System.Runtime.xml",
  3787. "ref/netstandard1.2/ko/System.Runtime.xml",
  3788. "ref/netstandard1.2/ru/System.Runtime.xml",
  3789. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3790. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3791. "ref/netstandard1.3/System.Runtime.dll",
  3792. "ref/netstandard1.3/System.Runtime.xml",
  3793. "ref/netstandard1.3/de/System.Runtime.xml",
  3794. "ref/netstandard1.3/es/System.Runtime.xml",
  3795. "ref/netstandard1.3/fr/System.Runtime.xml",
  3796. "ref/netstandard1.3/it/System.Runtime.xml",
  3797. "ref/netstandard1.3/ja/System.Runtime.xml",
  3798. "ref/netstandard1.3/ko/System.Runtime.xml",
  3799. "ref/netstandard1.3/ru/System.Runtime.xml",
  3800. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3801. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3802. "ref/netstandard1.5/System.Runtime.dll",
  3803. "ref/netstandard1.5/System.Runtime.xml",
  3804. "ref/netstandard1.5/de/System.Runtime.xml",
  3805. "ref/netstandard1.5/es/System.Runtime.xml",
  3806. "ref/netstandard1.5/fr/System.Runtime.xml",
  3807. "ref/netstandard1.5/it/System.Runtime.xml",
  3808. "ref/netstandard1.5/ja/System.Runtime.xml",
  3809. "ref/netstandard1.5/ko/System.Runtime.xml",
  3810. "ref/netstandard1.5/ru/System.Runtime.xml",
  3811. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3812. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3813. "ref/portable-net45+win8+wp80+wpa81/_._",
  3814. "ref/win8/_._",
  3815. "ref/wp80/_._",
  3816. "ref/wpa81/_._",
  3817. "ref/xamarinios10/_._",
  3818. "ref/xamarinmac20/_._",
  3819. "ref/xamarintvos10/_._",
  3820. "ref/xamarinwatchos10/_._",
  3821. "system.runtime.4.3.0.nupkg.sha512",
  3822. "system.runtime.nuspec"
  3823. ]
  3824. },
  3825. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  3826. "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  3827. "type": "package",
  3828. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  3829. "files": [
  3830. ".nupkg.metadata",
  3831. ".signature.p7s",
  3832. "Icon.png",
  3833. "LICENSE.TXT",
  3834. "THIRD-PARTY-NOTICES.TXT",
  3835. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3836. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3837. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3838. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3839. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  3840. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  3841. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3842. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3843. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3844. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3845. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  3846. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  3847. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3848. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3849. "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
  3850. "system.runtime.compilerservices.unsafe.nuspec",
  3851. "useSharedDesignerContext.txt",
  3852. "version.txt"
  3853. ]
  3854. },
  3855. "System.Runtime.Extensions/4.3.0": {
  3856. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3857. "type": "package",
  3858. "path": "system.runtime.extensions/4.3.0",
  3859. "files": [
  3860. ".nupkg.metadata",
  3861. ".signature.p7s",
  3862. "ThirdPartyNotices.txt",
  3863. "dotnet_library_license.txt",
  3864. "lib/MonoAndroid10/_._",
  3865. "lib/MonoTouch10/_._",
  3866. "lib/net45/_._",
  3867. "lib/net462/System.Runtime.Extensions.dll",
  3868. "lib/portable-net45+win8+wp8+wpa81/_._",
  3869. "lib/win8/_._",
  3870. "lib/wp80/_._",
  3871. "lib/wpa81/_._",
  3872. "lib/xamarinios10/_._",
  3873. "lib/xamarinmac20/_._",
  3874. "lib/xamarintvos10/_._",
  3875. "lib/xamarinwatchos10/_._",
  3876. "ref/MonoAndroid10/_._",
  3877. "ref/MonoTouch10/_._",
  3878. "ref/net45/_._",
  3879. "ref/net462/System.Runtime.Extensions.dll",
  3880. "ref/netcore50/System.Runtime.Extensions.dll",
  3881. "ref/netcore50/System.Runtime.Extensions.xml",
  3882. "ref/netcore50/de/System.Runtime.Extensions.xml",
  3883. "ref/netcore50/es/System.Runtime.Extensions.xml",
  3884. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  3885. "ref/netcore50/it/System.Runtime.Extensions.xml",
  3886. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  3887. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  3888. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  3889. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  3890. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  3891. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  3892. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  3893. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  3894. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  3895. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  3896. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  3897. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  3898. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  3899. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  3900. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  3901. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  3902. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  3903. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  3904. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  3905. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  3906. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  3907. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  3908. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  3909. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  3910. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  3911. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  3912. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  3913. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  3914. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  3915. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  3916. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  3917. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  3918. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  3919. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  3920. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  3921. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  3922. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  3923. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  3924. "ref/portable-net45+win8+wp8+wpa81/_._",
  3925. "ref/win8/_._",
  3926. "ref/wp80/_._",
  3927. "ref/wpa81/_._",
  3928. "ref/xamarinios10/_._",
  3929. "ref/xamarinmac20/_._",
  3930. "ref/xamarintvos10/_._",
  3931. "ref/xamarinwatchos10/_._",
  3932. "system.runtime.extensions.4.3.0.nupkg.sha512",
  3933. "system.runtime.extensions.nuspec"
  3934. ]
  3935. },
  3936. "System.Runtime.Handles/4.3.0": {
  3937. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  3938. "type": "package",
  3939. "path": "system.runtime.handles/4.3.0",
  3940. "files": [
  3941. ".nupkg.metadata",
  3942. ".signature.p7s",
  3943. "ThirdPartyNotices.txt",
  3944. "dotnet_library_license.txt",
  3945. "lib/MonoAndroid10/_._",
  3946. "lib/MonoTouch10/_._",
  3947. "lib/net46/_._",
  3948. "lib/xamarinios10/_._",
  3949. "lib/xamarinmac20/_._",
  3950. "lib/xamarintvos10/_._",
  3951. "lib/xamarinwatchos10/_._",
  3952. "ref/MonoAndroid10/_._",
  3953. "ref/MonoTouch10/_._",
  3954. "ref/net46/_._",
  3955. "ref/netstandard1.3/System.Runtime.Handles.dll",
  3956. "ref/netstandard1.3/System.Runtime.Handles.xml",
  3957. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  3958. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  3959. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  3960. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  3961. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  3962. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  3963. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  3964. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  3965. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  3966. "ref/xamarinios10/_._",
  3967. "ref/xamarinmac20/_._",
  3968. "ref/xamarintvos10/_._",
  3969. "ref/xamarinwatchos10/_._",
  3970. "system.runtime.handles.4.3.0.nupkg.sha512",
  3971. "system.runtime.handles.nuspec"
  3972. ]
  3973. },
  3974. "System.Runtime.InteropServices/4.3.0": {
  3975. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  3976. "type": "package",
  3977. "path": "system.runtime.interopservices/4.3.0",
  3978. "files": [
  3979. ".nupkg.metadata",
  3980. ".signature.p7s",
  3981. "ThirdPartyNotices.txt",
  3982. "dotnet_library_license.txt",
  3983. "lib/MonoAndroid10/_._",
  3984. "lib/MonoTouch10/_._",
  3985. "lib/net45/_._",
  3986. "lib/net462/System.Runtime.InteropServices.dll",
  3987. "lib/net463/System.Runtime.InteropServices.dll",
  3988. "lib/portable-net45+win8+wpa81/_._",
  3989. "lib/win8/_._",
  3990. "lib/wpa81/_._",
  3991. "lib/xamarinios10/_._",
  3992. "lib/xamarinmac20/_._",
  3993. "lib/xamarintvos10/_._",
  3994. "lib/xamarinwatchos10/_._",
  3995. "ref/MonoAndroid10/_._",
  3996. "ref/MonoTouch10/_._",
  3997. "ref/net45/_._",
  3998. "ref/net462/System.Runtime.InteropServices.dll",
  3999. "ref/net463/System.Runtime.InteropServices.dll",
  4000. "ref/netcore50/System.Runtime.InteropServices.dll",
  4001. "ref/netcore50/System.Runtime.InteropServices.xml",
  4002. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  4003. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  4004. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  4005. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  4006. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  4007. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  4008. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  4009. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  4010. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  4011. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  4012. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  4013. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  4014. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  4015. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  4016. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  4017. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  4018. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  4019. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  4020. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  4021. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  4022. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  4023. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  4024. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  4025. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  4026. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  4027. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  4028. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  4029. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  4030. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  4031. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  4032. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  4033. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  4034. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  4035. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  4036. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  4037. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  4038. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  4039. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  4040. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  4041. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  4042. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  4043. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  4044. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  4045. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  4046. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  4047. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  4048. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  4049. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  4050. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  4051. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  4052. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  4053. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  4054. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  4055. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  4056. "ref/portable-net45+win8+wpa81/_._",
  4057. "ref/win8/_._",
  4058. "ref/wpa81/_._",
  4059. "ref/xamarinios10/_._",
  4060. "ref/xamarinmac20/_._",
  4061. "ref/xamarintvos10/_._",
  4062. "ref/xamarinwatchos10/_._",
  4063. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  4064. "system.runtime.interopservices.nuspec"
  4065. ]
  4066. },
  4067. "System.Text.Encoding/4.3.0": {
  4068. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  4069. "type": "package",
  4070. "path": "system.text.encoding/4.3.0",
  4071. "files": [
  4072. ".nupkg.metadata",
  4073. ".signature.p7s",
  4074. "ThirdPartyNotices.txt",
  4075. "dotnet_library_license.txt",
  4076. "lib/MonoAndroid10/_._",
  4077. "lib/MonoTouch10/_._",
  4078. "lib/net45/_._",
  4079. "lib/portable-net45+win8+wp8+wpa81/_._",
  4080. "lib/win8/_._",
  4081. "lib/wp80/_._",
  4082. "lib/wpa81/_._",
  4083. "lib/xamarinios10/_._",
  4084. "lib/xamarinmac20/_._",
  4085. "lib/xamarintvos10/_._",
  4086. "lib/xamarinwatchos10/_._",
  4087. "ref/MonoAndroid10/_._",
  4088. "ref/MonoTouch10/_._",
  4089. "ref/net45/_._",
  4090. "ref/netcore50/System.Text.Encoding.dll",
  4091. "ref/netcore50/System.Text.Encoding.xml",
  4092. "ref/netcore50/de/System.Text.Encoding.xml",
  4093. "ref/netcore50/es/System.Text.Encoding.xml",
  4094. "ref/netcore50/fr/System.Text.Encoding.xml",
  4095. "ref/netcore50/it/System.Text.Encoding.xml",
  4096. "ref/netcore50/ja/System.Text.Encoding.xml",
  4097. "ref/netcore50/ko/System.Text.Encoding.xml",
  4098. "ref/netcore50/ru/System.Text.Encoding.xml",
  4099. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  4100. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  4101. "ref/netstandard1.0/System.Text.Encoding.dll",
  4102. "ref/netstandard1.0/System.Text.Encoding.xml",
  4103. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  4104. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  4105. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  4106. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  4107. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  4108. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  4109. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  4110. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  4111. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  4112. "ref/netstandard1.3/System.Text.Encoding.dll",
  4113. "ref/netstandard1.3/System.Text.Encoding.xml",
  4114. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  4115. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  4116. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  4117. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  4118. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  4119. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  4120. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  4121. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  4122. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  4123. "ref/portable-net45+win8+wp8+wpa81/_._",
  4124. "ref/win8/_._",
  4125. "ref/wp80/_._",
  4126. "ref/wpa81/_._",
  4127. "ref/xamarinios10/_._",
  4128. "ref/xamarinmac20/_._",
  4129. "ref/xamarintvos10/_._",
  4130. "ref/xamarinwatchos10/_._",
  4131. "system.text.encoding.4.3.0.nupkg.sha512",
  4132. "system.text.encoding.nuspec"
  4133. ]
  4134. },
  4135. "System.Text.Encoding.CodePages/4.5.1": {
  4136. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  4137. "type": "package",
  4138. "path": "system.text.encoding.codepages/4.5.1",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "LICENSE.TXT",
  4143. "THIRD-PARTY-NOTICES.TXT",
  4144. "lib/MonoAndroid10/_._",
  4145. "lib/MonoTouch10/_._",
  4146. "lib/net46/System.Text.Encoding.CodePages.dll",
  4147. "lib/net461/System.Text.Encoding.CodePages.dll",
  4148. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  4149. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4150. "lib/xamarinios10/_._",
  4151. "lib/xamarinmac20/_._",
  4152. "lib/xamarintvos10/_._",
  4153. "lib/xamarinwatchos10/_._",
  4154. "ref/MonoAndroid10/_._",
  4155. "ref/MonoTouch10/_._",
  4156. "ref/xamarinios10/_._",
  4157. "ref/xamarinmac20/_._",
  4158. "ref/xamarintvos10/_._",
  4159. "ref/xamarinwatchos10/_._",
  4160. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  4161. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  4162. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  4163. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  4164. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  4165. "system.text.encoding.codepages.nuspec",
  4166. "useSharedDesignerContext.txt",
  4167. "version.txt"
  4168. ]
  4169. },
  4170. "System.Threading/4.3.0": {
  4171. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  4172. "type": "package",
  4173. "path": "system.threading/4.3.0",
  4174. "files": [
  4175. ".nupkg.metadata",
  4176. ".signature.p7s",
  4177. "ThirdPartyNotices.txt",
  4178. "dotnet_library_license.txt",
  4179. "lib/MonoAndroid10/_._",
  4180. "lib/MonoTouch10/_._",
  4181. "lib/net45/_._",
  4182. "lib/netcore50/System.Threading.dll",
  4183. "lib/netstandard1.3/System.Threading.dll",
  4184. "lib/portable-net45+win8+wp8+wpa81/_._",
  4185. "lib/win8/_._",
  4186. "lib/wp80/_._",
  4187. "lib/wpa81/_._",
  4188. "lib/xamarinios10/_._",
  4189. "lib/xamarinmac20/_._",
  4190. "lib/xamarintvos10/_._",
  4191. "lib/xamarinwatchos10/_._",
  4192. "ref/MonoAndroid10/_._",
  4193. "ref/MonoTouch10/_._",
  4194. "ref/net45/_._",
  4195. "ref/netcore50/System.Threading.dll",
  4196. "ref/netcore50/System.Threading.xml",
  4197. "ref/netcore50/de/System.Threading.xml",
  4198. "ref/netcore50/es/System.Threading.xml",
  4199. "ref/netcore50/fr/System.Threading.xml",
  4200. "ref/netcore50/it/System.Threading.xml",
  4201. "ref/netcore50/ja/System.Threading.xml",
  4202. "ref/netcore50/ko/System.Threading.xml",
  4203. "ref/netcore50/ru/System.Threading.xml",
  4204. "ref/netcore50/zh-hans/System.Threading.xml",
  4205. "ref/netcore50/zh-hant/System.Threading.xml",
  4206. "ref/netstandard1.0/System.Threading.dll",
  4207. "ref/netstandard1.0/System.Threading.xml",
  4208. "ref/netstandard1.0/de/System.Threading.xml",
  4209. "ref/netstandard1.0/es/System.Threading.xml",
  4210. "ref/netstandard1.0/fr/System.Threading.xml",
  4211. "ref/netstandard1.0/it/System.Threading.xml",
  4212. "ref/netstandard1.0/ja/System.Threading.xml",
  4213. "ref/netstandard1.0/ko/System.Threading.xml",
  4214. "ref/netstandard1.0/ru/System.Threading.xml",
  4215. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  4216. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  4217. "ref/netstandard1.3/System.Threading.dll",
  4218. "ref/netstandard1.3/System.Threading.xml",
  4219. "ref/netstandard1.3/de/System.Threading.xml",
  4220. "ref/netstandard1.3/es/System.Threading.xml",
  4221. "ref/netstandard1.3/fr/System.Threading.xml",
  4222. "ref/netstandard1.3/it/System.Threading.xml",
  4223. "ref/netstandard1.3/ja/System.Threading.xml",
  4224. "ref/netstandard1.3/ko/System.Threading.xml",
  4225. "ref/netstandard1.3/ru/System.Threading.xml",
  4226. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  4227. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  4228. "ref/portable-net45+win8+wp8+wpa81/_._",
  4229. "ref/win8/_._",
  4230. "ref/wp80/_._",
  4231. "ref/wpa81/_._",
  4232. "ref/xamarinios10/_._",
  4233. "ref/xamarinmac20/_._",
  4234. "ref/xamarintvos10/_._",
  4235. "ref/xamarinwatchos10/_._",
  4236. "runtimes/aot/lib/netcore50/System.Threading.dll",
  4237. "system.threading.4.3.0.nupkg.sha512",
  4238. "system.threading.nuspec"
  4239. ]
  4240. },
  4241. "System.Threading.Tasks/4.3.0": {
  4242. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  4243. "type": "package",
  4244. "path": "system.threading.tasks/4.3.0",
  4245. "files": [
  4246. ".nupkg.metadata",
  4247. ".signature.p7s",
  4248. "ThirdPartyNotices.txt",
  4249. "dotnet_library_license.txt",
  4250. "lib/MonoAndroid10/_._",
  4251. "lib/MonoTouch10/_._",
  4252. "lib/net45/_._",
  4253. "lib/portable-net45+win8+wp8+wpa81/_._",
  4254. "lib/win8/_._",
  4255. "lib/wp80/_._",
  4256. "lib/wpa81/_._",
  4257. "lib/xamarinios10/_._",
  4258. "lib/xamarinmac20/_._",
  4259. "lib/xamarintvos10/_._",
  4260. "lib/xamarinwatchos10/_._",
  4261. "ref/MonoAndroid10/_._",
  4262. "ref/MonoTouch10/_._",
  4263. "ref/net45/_._",
  4264. "ref/netcore50/System.Threading.Tasks.dll",
  4265. "ref/netcore50/System.Threading.Tasks.xml",
  4266. "ref/netcore50/de/System.Threading.Tasks.xml",
  4267. "ref/netcore50/es/System.Threading.Tasks.xml",
  4268. "ref/netcore50/fr/System.Threading.Tasks.xml",
  4269. "ref/netcore50/it/System.Threading.Tasks.xml",
  4270. "ref/netcore50/ja/System.Threading.Tasks.xml",
  4271. "ref/netcore50/ko/System.Threading.Tasks.xml",
  4272. "ref/netcore50/ru/System.Threading.Tasks.xml",
  4273. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  4274. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  4275. "ref/netstandard1.0/System.Threading.Tasks.dll",
  4276. "ref/netstandard1.0/System.Threading.Tasks.xml",
  4277. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  4278. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  4279. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  4280. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  4281. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  4282. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  4283. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  4284. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  4285. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  4286. "ref/netstandard1.3/System.Threading.Tasks.dll",
  4287. "ref/netstandard1.3/System.Threading.Tasks.xml",
  4288. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  4289. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  4290. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  4291. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  4292. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  4293. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  4294. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  4295. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  4296. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  4297. "ref/portable-net45+win8+wp8+wpa81/_._",
  4298. "ref/win8/_._",
  4299. "ref/wp80/_._",
  4300. "ref/wpa81/_._",
  4301. "ref/xamarinios10/_._",
  4302. "ref/xamarinmac20/_._",
  4303. "ref/xamarintvos10/_._",
  4304. "ref/xamarinwatchos10/_._",
  4305. "system.threading.tasks.4.3.0.nupkg.sha512",
  4306. "system.threading.tasks.nuspec"
  4307. ]
  4308. },
  4309. "System.Threading.Tasks.Extensions/4.5.4": {
  4310. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  4311. "type": "package",
  4312. "path": "system.threading.tasks.extensions/4.5.4",
  4313. "files": [
  4314. ".nupkg.metadata",
  4315. ".signature.p7s",
  4316. "LICENSE.TXT",
  4317. "THIRD-PARTY-NOTICES.TXT",
  4318. "lib/MonoAndroid10/_._",
  4319. "lib/MonoTouch10/_._",
  4320. "lib/net461/System.Threading.Tasks.Extensions.dll",
  4321. "lib/net461/System.Threading.Tasks.Extensions.xml",
  4322. "lib/netcoreapp2.1/_._",
  4323. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  4324. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  4325. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  4326. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  4327. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  4328. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  4329. "lib/xamarinios10/_._",
  4330. "lib/xamarinmac20/_._",
  4331. "lib/xamarintvos10/_._",
  4332. "lib/xamarinwatchos10/_._",
  4333. "ref/MonoAndroid10/_._",
  4334. "ref/MonoTouch10/_._",
  4335. "ref/netcoreapp2.1/_._",
  4336. "ref/xamarinios10/_._",
  4337. "ref/xamarinmac20/_._",
  4338. "ref/xamarintvos10/_._",
  4339. "ref/xamarinwatchos10/_._",
  4340. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  4341. "system.threading.tasks.extensions.nuspec",
  4342. "useSharedDesignerContext.txt",
  4343. "version.txt"
  4344. ]
  4345. },
  4346. "Tmds.DBus.Protocol/0.15.0": {
  4347. "sha512": "QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
  4348. "type": "package",
  4349. "path": "tmds.dbus.protocol/0.15.0",
  4350. "files": [
  4351. ".nupkg.metadata",
  4352. ".signature.p7s",
  4353. "lib/net6.0/Tmds.DBus.Protocol.dll",
  4354. "lib/netstandard2.0/Tmds.DBus.Protocol.dll",
  4355. "lib/netstandard2.1/Tmds.DBus.Protocol.dll",
  4356. "tmds.dbus.protocol.0.15.0.nupkg.sha512",
  4357. "tmds.dbus.protocol.nuspec"
  4358. ]
  4359. }
  4360. },
  4361. "projectFileDependencyGroups": {
  4362. "net8.0": [
  4363. "Avalonia >= 11.0.10",
  4364. "Avalonia.Desktop >= 11.0.10",
  4365. "Avalonia.Diagnostics >= 11.0.10",
  4366. "Avalonia.Fonts.Inter >= 11.0.10",
  4367. "Avalonia.Themes.Fluent >= 11.0.10"
  4368. ]
  4369. },
  4370. "packageFolders": {
  4371. "C:\\Users\\reksh\\.nuget\\packages\\": {}
  4372. },
  4373. "project": {
  4374. "version": "1.0.0",
  4375. "restore": {
  4376. "projectUniqueName": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\AvaloniaApplication1.csproj",
  4377. "projectName": "AvaloniaApplication1",
  4378. "projectPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\AvaloniaApplication1.csproj",
  4379. "packagesPath": "C:\\Users\\reksh\\.nuget\\packages\\",
  4380. "outputPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\AvaloniaApplication1\\AvaloniaApplication1\\obj\\",
  4381. "projectStyle": "PackageReference",
  4382. "configFilePaths": [
  4383. "C:\\Users\\reksh\\AppData\\Roaming\\NuGet\\NuGet.Config",
  4384. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  4385. ],
  4386. "originalTargetFrameworks": [
  4387. "net8.0"
  4388. ],
  4389. "sources": {
  4390. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  4391. "https://api.nuget.org/v3/index.json": {}
  4392. },
  4393. "frameworks": {
  4394. "net8.0": {
  4395. "targetAlias": "net8.0",
  4396. "projectReferences": {}
  4397. }
  4398. },
  4399. "warningProperties": {
  4400. "warnAsError": [
  4401. "NU1605"
  4402. ]
  4403. },
  4404. "restoreAuditProperties": {
  4405. "enableAudit": "true",
  4406. "auditLevel": "low",
  4407. "auditMode": "direct"
  4408. }
  4409. },
  4410. "frameworks": {
  4411. "net8.0": {
  4412. "targetAlias": "net8.0",
  4413. "dependencies": {
  4414. "Avalonia": {
  4415. "target": "Package",
  4416. "version": "[11.0.10, )"
  4417. },
  4418. "Avalonia.Desktop": {
  4419. "target": "Package",
  4420. "version": "[11.0.10, )"
  4421. },
  4422. "Avalonia.Diagnostics": {
  4423. "target": "Package",
  4424. "version": "[11.0.10, )"
  4425. },
  4426. "Avalonia.Fonts.Inter": {
  4427. "target": "Package",
  4428. "version": "[11.0.10, )"
  4429. },
  4430. "Avalonia.Themes.Fluent": {
  4431. "target": "Package",
  4432. "version": "[11.0.10, )"
  4433. }
  4434. },
  4435. "imports": [
  4436. "net461",
  4437. "net462",
  4438. "net47",
  4439. "net471",
  4440. "net472",
  4441. "net48",
  4442. "net481"
  4443. ],
  4444. "assetTargetFallback": true,
  4445. "warn": true,
  4446. "frameworkReferences": {
  4447. "Microsoft.NETCore.App": {
  4448. "privateAssets": "all"
  4449. }
  4450. },
  4451. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
  4452. }
  4453. }
  4454. }
  4455. }