project.assets.json 186 KB

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