project.assets.json 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "coverlet.collector/6.0.0": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Microsoft.CodeCoverage/17.8.0": {
  12. "type": "package",
  13. "compile": {
  14. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  15. },
  16. "runtime": {
  17. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  18. },
  19. "build": {
  20. "build/netstandard2.0/Microsoft.CodeCoverage.props": {},
  21. "build/netstandard2.0/Microsoft.CodeCoverage.targets": {}
  22. }
  23. },
  24. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  25. "type": "package",
  26. "compile": {
  27. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  28. "related": ".xml"
  29. }
  30. },
  31. "runtime": {
  32. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  33. "related": ".xml"
  34. }
  35. },
  36. "build": {
  37. "buildTransitive/net6.0/_._": {}
  38. }
  39. },
  40. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  41. "type": "package",
  42. "dependencies": {
  43. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  44. },
  45. "compile": {
  46. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  47. "related": ".xml"
  48. }
  49. },
  50. "runtime": {
  51. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  52. "related": ".xml"
  53. }
  54. },
  55. "build": {
  56. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  57. }
  58. },
  59. "Microsoft.IdentityModel.Abstractions/7.5.1": {
  60. "type": "package",
  61. "compile": {
  62. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  63. "related": ".xml"
  64. }
  65. },
  66. "runtime": {
  67. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  68. "related": ".xml"
  69. }
  70. }
  71. },
  72. "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
  73. "type": "package",
  74. "dependencies": {
  75. "Microsoft.IdentityModel.Tokens": "7.5.1"
  76. },
  77. "compile": {
  78. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  79. "related": ".xml"
  80. }
  81. },
  82. "runtime": {
  83. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  84. "related": ".xml"
  85. }
  86. }
  87. },
  88. "Microsoft.IdentityModel.Logging/7.5.1": {
  89. "type": "package",
  90. "dependencies": {
  91. "Microsoft.IdentityModel.Abstractions": "7.5.1"
  92. },
  93. "compile": {
  94. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  95. "related": ".xml"
  96. }
  97. },
  98. "runtime": {
  99. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  100. "related": ".xml"
  101. }
  102. }
  103. },
  104. "Microsoft.IdentityModel.Tokens/7.5.1": {
  105. "type": "package",
  106. "dependencies": {
  107. "Microsoft.IdentityModel.Logging": "7.5.1"
  108. },
  109. "compile": {
  110. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  111. "related": ".xml"
  112. }
  113. },
  114. "runtime": {
  115. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  116. "related": ".xml"
  117. }
  118. }
  119. },
  120. "Microsoft.IO.RecyclableMemoryStream/3.0.0": {
  121. "type": "package",
  122. "compile": {
  123. "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  124. "related": ".xml"
  125. }
  126. },
  127. "runtime": {
  128. "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  129. "related": ".xml"
  130. }
  131. }
  132. },
  133. "Microsoft.NET.Test.Sdk/17.8.0": {
  134. "type": "package",
  135. "dependencies": {
  136. "Microsoft.CodeCoverage": "17.8.0",
  137. "Microsoft.TestPlatform.TestHost": "17.8.0"
  138. },
  139. "compile": {
  140. "lib/netcoreapp3.1/_._": {}
  141. },
  142. "runtime": {
  143. "lib/netcoreapp3.1/_._": {}
  144. },
  145. "build": {
  146. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {},
  147. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {}
  148. },
  149. "buildMultiTargeting": {
  150. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  151. }
  152. },
  153. "Microsoft.TestPlatform.ObjectModel/17.8.0": {
  154. "type": "package",
  155. "dependencies": {
  156. "NuGet.Frameworks": "6.5.0",
  157. "System.Reflection.Metadata": "1.6.0"
  158. },
  159. "compile": {
  160. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  161. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  162. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  163. },
  164. "runtime": {
  165. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  166. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  167. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  168. },
  169. "resource": {
  170. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  171. "locale": "cs"
  172. },
  173. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  174. "locale": "cs"
  175. },
  176. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  177. "locale": "de"
  178. },
  179. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  180. "locale": "de"
  181. },
  182. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  183. "locale": "es"
  184. },
  185. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  186. "locale": "es"
  187. },
  188. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  189. "locale": "fr"
  190. },
  191. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  192. "locale": "fr"
  193. },
  194. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  195. "locale": "it"
  196. },
  197. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  198. "locale": "it"
  199. },
  200. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  201. "locale": "ja"
  202. },
  203. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  204. "locale": "ja"
  205. },
  206. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  207. "locale": "ko"
  208. },
  209. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  210. "locale": "ko"
  211. },
  212. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  213. "locale": "pl"
  214. },
  215. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  216. "locale": "pl"
  217. },
  218. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  219. "locale": "pt-BR"
  220. },
  221. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  222. "locale": "pt-BR"
  223. },
  224. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  225. "locale": "ru"
  226. },
  227. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  228. "locale": "ru"
  229. },
  230. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  231. "locale": "tr"
  232. },
  233. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  234. "locale": "tr"
  235. },
  236. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  237. "locale": "zh-Hans"
  238. },
  239. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  240. "locale": "zh-Hans"
  241. },
  242. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  243. "locale": "zh-Hant"
  244. },
  245. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  246. "locale": "zh-Hant"
  247. }
  248. }
  249. },
  250. "Microsoft.TestPlatform.TestHost/17.8.0": {
  251. "type": "package",
  252. "dependencies": {
  253. "Microsoft.TestPlatform.ObjectModel": "17.8.0",
  254. "Newtonsoft.Json": "13.0.1"
  255. },
  256. "compile": {
  257. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  258. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  259. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  260. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  261. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
  262. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  263. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  264. "lib/netcoreapp3.1/testhost.dll": {
  265. "related": ".deps.json"
  266. }
  267. },
  268. "runtime": {
  269. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  270. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  271. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  272. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  273. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
  274. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  275. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  276. "lib/netcoreapp3.1/testhost.dll": {
  277. "related": ".deps.json"
  278. }
  279. },
  280. "resource": {
  281. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  282. "locale": "cs"
  283. },
  284. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  285. "locale": "cs"
  286. },
  287. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  288. "locale": "cs"
  289. },
  290. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  291. "locale": "de"
  292. },
  293. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  294. "locale": "de"
  295. },
  296. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  297. "locale": "de"
  298. },
  299. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  300. "locale": "es"
  301. },
  302. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  303. "locale": "es"
  304. },
  305. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  306. "locale": "es"
  307. },
  308. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  309. "locale": "fr"
  310. },
  311. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  312. "locale": "fr"
  313. },
  314. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  315. "locale": "fr"
  316. },
  317. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  318. "locale": "it"
  319. },
  320. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  321. "locale": "it"
  322. },
  323. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  324. "locale": "it"
  325. },
  326. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  327. "locale": "ja"
  328. },
  329. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  330. "locale": "ja"
  331. },
  332. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  333. "locale": "ja"
  334. },
  335. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  336. "locale": "ko"
  337. },
  338. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  339. "locale": "ko"
  340. },
  341. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  342. "locale": "ko"
  343. },
  344. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  345. "locale": "pl"
  346. },
  347. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  348. "locale": "pl"
  349. },
  350. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  351. "locale": "pl"
  352. },
  353. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  354. "locale": "pt-BR"
  355. },
  356. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  357. "locale": "pt-BR"
  358. },
  359. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  360. "locale": "pt-BR"
  361. },
  362. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  363. "locale": "ru"
  364. },
  365. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  366. "locale": "ru"
  367. },
  368. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  369. "locale": "ru"
  370. },
  371. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  372. "locale": "tr"
  373. },
  374. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  375. "locale": "tr"
  376. },
  377. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  378. "locale": "tr"
  379. },
  380. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  381. "locale": "zh-Hans"
  382. },
  383. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  384. "locale": "zh-Hans"
  385. },
  386. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  387. "locale": "zh-Hans"
  388. },
  389. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  390. "locale": "zh-Hant"
  391. },
  392. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  393. "locale": "zh-Hant"
  394. },
  395. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  396. "locale": "zh-Hant"
  397. }
  398. },
  399. "build": {
  400. "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {}
  401. }
  402. },
  403. "MimeMapping/3.0.1": {
  404. "type": "package",
  405. "compile": {
  406. "lib/netstandard2.0/MimeMapping.dll": {
  407. "related": ".xml"
  408. }
  409. },
  410. "runtime": {
  411. "lib/netstandard2.0/MimeMapping.dll": {
  412. "related": ".xml"
  413. }
  414. }
  415. },
  416. "MSTest.TestAdapter/3.1.1": {
  417. "type": "package",
  418. "build": {
  419. "build/net6.0/MSTest.TestAdapter.props": {},
  420. "build/net6.0/MSTest.TestAdapter.targets": {}
  421. }
  422. },
  423. "MSTest.TestFramework/3.1.1": {
  424. "type": "package",
  425. "compile": {
  426. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "runtime": {
  431. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  432. "related": ".xml"
  433. }
  434. },
  435. "resource": {
  436. "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  437. "locale": "cs"
  438. },
  439. "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  440. "locale": "de"
  441. },
  442. "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  443. "locale": "es"
  444. },
  445. "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  446. "locale": "fr"
  447. },
  448. "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  449. "locale": "it"
  450. },
  451. "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  452. "locale": "ja"
  453. },
  454. "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  455. "locale": "ko"
  456. },
  457. "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  458. "locale": "pl"
  459. },
  460. "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  461. "locale": "pt-BR"
  462. },
  463. "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  464. "locale": "ru"
  465. },
  466. "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  467. "locale": "tr"
  468. },
  469. "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  470. "locale": "zh-Hans"
  471. },
  472. "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  473. "locale": "zh-Hant"
  474. }
  475. },
  476. "build": {
  477. "build/net6.0/MSTest.TestFramework.targets": {}
  478. }
  479. },
  480. "Newtonsoft.Json/13.0.3": {
  481. "type": "package",
  482. "compile": {
  483. "lib/net6.0/Newtonsoft.Json.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "runtime": {
  488. "lib/net6.0/Newtonsoft.Json.dll": {
  489. "related": ".xml"
  490. }
  491. }
  492. },
  493. "NuGet.Frameworks/6.5.0": {
  494. "type": "package",
  495. "compile": {
  496. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  497. },
  498. "runtime": {
  499. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  500. }
  501. },
  502. "Supabase/1.1.1": {
  503. "type": "package",
  504. "dependencies": {
  505. "Newtonsoft.Json": "13.0.3",
  506. "Supabase.Core": "1.0.0",
  507. "Supabase.Functions": "2.0.0",
  508. "Supabase.Gotrue": "6.0.3",
  509. "Supabase.Postgrest": "4.0.3",
  510. "Supabase.Realtime": "7.0.2",
  511. "Supabase.Storage": "2.0.2"
  512. },
  513. "compile": {
  514. "lib/netstandard2.1/Supabase.dll": {
  515. "related": ".xml"
  516. }
  517. },
  518. "runtime": {
  519. "lib/netstandard2.1/Supabase.dll": {
  520. "related": ".xml"
  521. }
  522. }
  523. },
  524. "Supabase.Core/1.0.0": {
  525. "type": "package",
  526. "compile": {
  527. "lib/netstandard2.0/Supabase.Core.dll": {
  528. "related": ".xml"
  529. }
  530. },
  531. "runtime": {
  532. "lib/netstandard2.0/Supabase.Core.dll": {
  533. "related": ".xml"
  534. }
  535. }
  536. },
  537. "Supabase.Functions/2.0.0": {
  538. "type": "package",
  539. "dependencies": {
  540. "Newtonsoft.Json": "13.0.3",
  541. "Supabase.Core": "1.0.0"
  542. },
  543. "compile": {
  544. "lib/netstandard2.0/Supabase.Functions.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Supabase.Functions.dll": {
  550. "related": ".xml"
  551. }
  552. }
  553. },
  554. "Supabase.Gotrue/6.0.3": {
  555. "type": "package",
  556. "dependencies": {
  557. "Newtonsoft.Json": "13.0.3",
  558. "Supabase.Core": "1.0.0",
  559. "System.IdentityModel.Tokens.Jwt": "7.5.1"
  560. },
  561. "compile": {
  562. "lib/netstandard2.1/Supabase.Gotrue.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "runtime": {
  567. "lib/netstandard2.1/Supabase.Gotrue.dll": {
  568. "related": ".xml"
  569. }
  570. }
  571. },
  572. "Supabase.Postgrest/4.0.3": {
  573. "type": "package",
  574. "dependencies": {
  575. "Newtonsoft.Json": "13.0.3",
  576. "Supabase.Core": "1.0.0"
  577. },
  578. "compile": {
  579. "lib/netstandard2.0/Supabase.Postgrest.dll": {
  580. "related": ".xml"
  581. }
  582. },
  583. "runtime": {
  584. "lib/netstandard2.0/Supabase.Postgrest.dll": {
  585. "related": ".xml"
  586. }
  587. }
  588. },
  589. "Supabase.Realtime/7.0.2": {
  590. "type": "package",
  591. "dependencies": {
  592. "Newtonsoft.Json": "13.0.3",
  593. "Supabase.Core": "1.0.0",
  594. "Supabase.Postgrest": "4.0.3",
  595. "Websocket.Client": "5.1.1"
  596. },
  597. "compile": {
  598. "lib/netstandard2.1/Supabase.Realtime.dll": {
  599. "related": ".xml"
  600. }
  601. },
  602. "runtime": {
  603. "lib/netstandard2.1/Supabase.Realtime.dll": {
  604. "related": ".xml"
  605. }
  606. }
  607. },
  608. "Supabase.Storage/2.0.2": {
  609. "type": "package",
  610. "dependencies": {
  611. "MimeMapping": "3.0.1",
  612. "Newtonsoft.Json": "13.0.3",
  613. "Supabase.Core": "1.0.0"
  614. },
  615. "compile": {
  616. "lib/netstandard2.0/Supabase.Storage.dll": {
  617. "related": ".xml"
  618. }
  619. },
  620. "runtime": {
  621. "lib/netstandard2.0/Supabase.Storage.dll": {
  622. "related": ".xml"
  623. }
  624. }
  625. },
  626. "System.IdentityModel.Tokens.Jwt/7.5.1": {
  627. "type": "package",
  628. "dependencies": {
  629. "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
  630. "Microsoft.IdentityModel.Tokens": "7.5.1"
  631. },
  632. "compile": {
  633. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  634. "related": ".xml"
  635. }
  636. },
  637. "runtime": {
  638. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  639. "related": ".xml"
  640. }
  641. }
  642. },
  643. "System.Reactive/6.0.0": {
  644. "type": "package",
  645. "compile": {
  646. "lib/net6.0/System.Reactive.dll": {
  647. "related": ".xml"
  648. }
  649. },
  650. "runtime": {
  651. "lib/net6.0/System.Reactive.dll": {
  652. "related": ".xml"
  653. }
  654. },
  655. "build": {
  656. "buildTransitive/net6.0/_._": {}
  657. }
  658. },
  659. "System.Reflection.Metadata/1.6.0": {
  660. "type": "package",
  661. "compile": {
  662. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  663. "related": ".xml"
  664. }
  665. },
  666. "runtime": {
  667. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  668. "related": ".xml"
  669. }
  670. }
  671. },
  672. "System.Threading.Channels/8.0.0": {
  673. "type": "package",
  674. "compile": {
  675. "lib/net8.0/System.Threading.Channels.dll": {
  676. "related": ".xml"
  677. }
  678. },
  679. "runtime": {
  680. "lib/net8.0/System.Threading.Channels.dll": {
  681. "related": ".xml"
  682. }
  683. },
  684. "build": {
  685. "buildTransitive/net6.0/_._": {}
  686. }
  687. },
  688. "Websocket.Client/5.1.1": {
  689. "type": "package",
  690. "dependencies": {
  691. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  692. "Microsoft.IO.RecyclableMemoryStream": "3.0.0",
  693. "System.Reactive": "6.0.0",
  694. "System.Threading.Channels": "8.0.0"
  695. },
  696. "compile": {
  697. "lib/net8.0/Websocket.Client.dll": {
  698. "related": ".xml"
  699. }
  700. },
  701. "runtime": {
  702. "lib/net8.0/Websocket.Client.dll": {
  703. "related": ".xml"
  704. }
  705. }
  706. }
  707. }
  708. },
  709. "libraries": {
  710. "coverlet.collector/6.0.0": {
  711. "sha512": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==",
  712. "type": "package",
  713. "path": "coverlet.collector/6.0.0",
  714. "files": [
  715. ".nupkg.metadata",
  716. ".signature.p7s",
  717. "build/netstandard1.0/Microsoft.Bcl.AsyncInterfaces.dll",
  718. "build/netstandard1.0/Microsoft.CSharp.dll",
  719. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  720. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  721. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  722. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  723. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  724. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  725. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  726. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  727. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  728. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  729. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  730. "build/netstandard1.0/Mono.Cecil.dll",
  731. "build/netstandard1.0/Newtonsoft.Json.dll",
  732. "build/netstandard1.0/NuGet.Frameworks.dll",
  733. "build/netstandard1.0/System.AppContext.dll",
  734. "build/netstandard1.0/System.Collections.Immutable.dll",
  735. "build/netstandard1.0/System.Dynamic.Runtime.dll",
  736. "build/netstandard1.0/System.IO.FileSystem.Primitives.dll",
  737. "build/netstandard1.0/System.Linq.Expressions.dll",
  738. "build/netstandard1.0/System.Linq.dll",
  739. "build/netstandard1.0/System.ObjectModel.dll",
  740. "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  741. "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  742. "build/netstandard1.0/System.Reflection.Emit.dll",
  743. "build/netstandard1.0/System.Reflection.Metadata.dll",
  744. "build/netstandard1.0/System.Reflection.TypeExtensions.dll",
  745. "build/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  746. "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  747. "build/netstandard1.0/System.Text.RegularExpressions.dll",
  748. "build/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  749. "build/netstandard1.0/System.Threading.dll",
  750. "build/netstandard1.0/System.Xml.ReaderWriter.dll",
  751. "build/netstandard1.0/System.Xml.XDocument.dll",
  752. "build/netstandard1.0/coverlet.collector.deps.json",
  753. "build/netstandard1.0/coverlet.collector.dll",
  754. "build/netstandard1.0/coverlet.collector.pdb",
  755. "build/netstandard1.0/coverlet.collector.targets",
  756. "build/netstandard1.0/coverlet.core.dll",
  757. "build/netstandard1.0/coverlet.core.pdb",
  758. "coverlet-icon.png",
  759. "coverlet.collector.6.0.0.nupkg.sha512",
  760. "coverlet.collector.nuspec"
  761. ]
  762. },
  763. "Microsoft.CodeCoverage/17.8.0": {
  764. "sha512": "KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==",
  765. "type": "package",
  766. "path": "microsoft.codecoverage/17.8.0",
  767. "files": [
  768. ".nupkg.metadata",
  769. ".signature.p7s",
  770. "Icon.png",
  771. "LICENSE_MIT.txt",
  772. "ThirdPartyNotices.txt",
  773. "build/netstandard2.0/CodeCoverage/CodeCoverage.config",
  774. "build/netstandard2.0/CodeCoverage/CodeCoverage.exe",
  775. "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
  776. "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe",
  777. "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
  778. "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll",
  779. "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll",
  780. "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config",
  781. "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll",
  782. "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll",
  783. "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll",
  784. "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  785. "build/netstandard2.0/CodeCoverage/covrun32.dll",
  786. "build/netstandard2.0/CodeCoverage/msdia140.dll",
  787. "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config",
  788. "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so",
  789. "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so",
  790. "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll",
  791. "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config",
  792. "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib",
  793. "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib",
  794. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config",
  795. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so",
  796. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so",
  797. "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
  798. "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
  799. "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll",
  800. "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll",
  801. "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll",
  802. "build/netstandard2.0/Microsoft.CodeCoverage.props",
  803. "build/netstandard2.0/Microsoft.CodeCoverage.targets",
  804. "build/netstandard2.0/Microsoft.DiaSymReader.dll",
  805. "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  806. "build/netstandard2.0/Mono.Cecil.Pdb.dll",
  807. "build/netstandard2.0/Mono.Cecil.Rocks.dll",
  808. "build/netstandard2.0/Mono.Cecil.dll",
  809. "build/netstandard2.0/ThirdPartyNotices.txt",
  810. "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  811. "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  812. "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  813. "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  814. "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  815. "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  816. "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  817. "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  818. "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  819. "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  820. "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  821. "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  822. "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  823. "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  824. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  825. "microsoft.codecoverage.17.8.0.nupkg.sha512",
  826. "microsoft.codecoverage.nuspec"
  827. ]
  828. },
  829. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  830. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  831. "type": "package",
  832. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  833. "files": [
  834. ".nupkg.metadata",
  835. ".signature.p7s",
  836. "Icon.png",
  837. "LICENSE.TXT",
  838. "PACKAGE.md",
  839. "THIRD-PARTY-NOTICES.TXT",
  840. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  841. "buildTransitive/net462/_._",
  842. "buildTransitive/net6.0/_._",
  843. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  844. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  845. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  846. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  847. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  848. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  849. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  850. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  851. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  852. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  853. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  854. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  855. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  856. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  857. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  858. "useSharedDesignerContext.txt"
  859. ]
  860. },
  861. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  862. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  863. "type": "package",
  864. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  865. "files": [
  866. ".nupkg.metadata",
  867. ".signature.p7s",
  868. "Icon.png",
  869. "LICENSE.TXT",
  870. "PACKAGE.md",
  871. "THIRD-PARTY-NOTICES.TXT",
  872. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  873. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  874. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  875. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  876. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  877. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  878. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  879. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  880. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  881. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  882. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  883. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  884. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  885. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  886. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  887. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  888. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  889. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  890. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  891. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  892. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  893. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  894. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  895. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  896. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  897. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  898. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  899. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  900. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  901. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  902. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  903. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  904. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  905. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  906. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  907. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  908. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  909. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  910. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  911. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  912. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  913. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  914. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  915. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  916. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  917. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  918. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  919. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  920. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  921. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  922. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  923. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  924. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  925. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  926. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  927. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  928. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  929. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  930. "microsoft.extensions.logging.abstractions.nuspec",
  931. "useSharedDesignerContext.txt"
  932. ]
  933. },
  934. "Microsoft.IdentityModel.Abstractions/7.5.1": {
  935. "sha512": "PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
  936. "type": "package",
  937. "path": "microsoft.identitymodel.abstractions/7.5.1",
  938. "files": [
  939. ".nupkg.metadata",
  940. ".signature.p7s",
  941. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  942. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  943. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  944. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  945. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  946. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  947. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  948. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  949. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  950. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  951. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  952. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  953. "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
  954. "microsoft.identitymodel.abstractions.nuspec"
  955. ]
  956. },
  957. "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
  958. "sha512": "93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
  959. "type": "package",
  960. "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
  961. "files": [
  962. ".nupkg.metadata",
  963. ".signature.p7s",
  964. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  965. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  966. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  967. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  968. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  969. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  970. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  971. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  972. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  973. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  974. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  975. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  976. "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
  977. "microsoft.identitymodel.jsonwebtokens.nuspec"
  978. ]
  979. },
  980. "Microsoft.IdentityModel.Logging/7.5.1": {
  981. "sha512": "PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
  982. "type": "package",
  983. "path": "microsoft.identitymodel.logging/7.5.1",
  984. "files": [
  985. ".nupkg.metadata",
  986. ".signature.p7s",
  987. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  988. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  989. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  990. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  991. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  992. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  993. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  994. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  995. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  996. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  997. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  998. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  999. "microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
  1000. "microsoft.identitymodel.logging.nuspec"
  1001. ]
  1002. },
  1003. "Microsoft.IdentityModel.Tokens/7.5.1": {
  1004. "sha512": "Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
  1005. "type": "package",
  1006. "path": "microsoft.identitymodel.tokens/7.5.1",
  1007. "files": [
  1008. ".nupkg.metadata",
  1009. ".signature.p7s",
  1010. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  1011. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  1012. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  1013. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  1014. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  1015. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  1016. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  1017. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  1018. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  1019. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  1020. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  1021. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  1022. "microsoft.identitymodel.tokens.7.5.1.nupkg.sha512",
  1023. "microsoft.identitymodel.tokens.nuspec"
  1024. ]
  1025. },
  1026. "Microsoft.IO.RecyclableMemoryStream/3.0.0": {
  1027. "sha512": "irv0HuqoH8Ig5i2fO+8dmDNdFdsrO+DoQcedwIlb810qpZHBNQHZLW7C/AHBQDgLLpw2T96vmMAy/aE4Yj55Sg==",
  1028. "type": "package",
  1029. "path": "microsoft.io.recyclablememorystream/3.0.0",
  1030. "files": [
  1031. ".nupkg.metadata",
  1032. ".signature.p7s",
  1033. "README.md",
  1034. "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll",
  1035. "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml",
  1036. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
  1037. "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
  1038. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
  1039. "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
  1040. "microsoft.io.recyclablememorystream.3.0.0.nupkg.sha512",
  1041. "microsoft.io.recyclablememorystream.nuspec"
  1042. ]
  1043. },
  1044. "Microsoft.NET.Test.Sdk/17.8.0": {
  1045. "sha512": "BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==",
  1046. "type": "package",
  1047. "path": "microsoft.net.test.sdk/17.8.0",
  1048. "files": [
  1049. ".nupkg.metadata",
  1050. ".signature.p7s",
  1051. "Icon.png",
  1052. "LICENSE_MIT.txt",
  1053. "build/net462/Microsoft.NET.Test.Sdk.props",
  1054. "build/net462/Microsoft.NET.Test.Sdk.targets",
  1055. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs",
  1056. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs",
  1057. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb",
  1058. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props",
  1059. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets",
  1060. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  1061. "lib/net462/_._",
  1062. "lib/netcoreapp3.1/_._",
  1063. "microsoft.net.test.sdk.17.8.0.nupkg.sha512",
  1064. "microsoft.net.test.sdk.nuspec"
  1065. ]
  1066. },
  1067. "Microsoft.TestPlatform.ObjectModel/17.8.0": {
  1068. "sha512": "AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==",
  1069. "type": "package",
  1070. "path": "microsoft.testplatform.objectmodel/17.8.0",
  1071. "files": [
  1072. ".nupkg.metadata",
  1073. ".signature.p7s",
  1074. "Icon.png",
  1075. "LICENSE_MIT.txt",
  1076. "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll",
  1077. "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1078. "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1079. "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1080. "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1081. "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1082. "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1083. "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1084. "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1085. "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1086. "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1087. "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1088. "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1089. "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1090. "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1091. "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1092. "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1093. "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1094. "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1095. "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1096. "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1097. "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1098. "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1099. "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1100. "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1101. "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1102. "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1103. "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1104. "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1105. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1106. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1107. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1108. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1109. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1110. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1111. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1112. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1113. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1114. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1115. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1116. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1117. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1118. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1119. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1120. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1121. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1122. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1123. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1124. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1125. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1126. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1127. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1128. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1129. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1130. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1131. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1132. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1133. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1134. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1135. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1136. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1137. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1138. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1139. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1140. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1141. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1142. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1143. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1144. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1145. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1146. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1147. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1148. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1149. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1150. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1151. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1152. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1153. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1154. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1155. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1156. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1157. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1158. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1159. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1160. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1161. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1162. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1163. "microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512",
  1164. "microsoft.testplatform.objectmodel.nuspec"
  1165. ]
  1166. },
  1167. "Microsoft.TestPlatform.TestHost/17.8.0": {
  1168. "sha512": "9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==",
  1169. "type": "package",
  1170. "path": "microsoft.testplatform.testhost/17.8.0",
  1171. "files": [
  1172. ".nupkg.metadata",
  1173. ".signature.p7s",
  1174. "Icon.png",
  1175. "LICENSE_MIT.txt",
  1176. "ThirdPartyNotices.txt",
  1177. "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props",
  1178. "build/netcoreapp3.1/x64/testhost.dll",
  1179. "build/netcoreapp3.1/x64/testhost.exe",
  1180. "build/netcoreapp3.1/x86/testhost.x86.dll",
  1181. "build/netcoreapp3.1/x86/testhost.x86.exe",
  1182. "lib/net462/_._",
  1183. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  1184. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1185. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  1186. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1187. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll",
  1188. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  1189. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1190. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1191. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1192. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1193. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1194. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1195. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1196. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1197. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1198. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1199. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1200. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1201. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1202. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1203. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1204. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1205. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1206. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1207. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1208. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1209. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1210. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1211. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1212. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1213. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1214. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1215. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1216. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1217. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1218. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1219. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1220. "lib/netcoreapp3.1/testhost.deps.json",
  1221. "lib/netcoreapp3.1/testhost.dll",
  1222. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1223. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1224. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1225. "lib/netcoreapp3.1/x64/msdia140.dll",
  1226. "lib/netcoreapp3.1/x86/msdia140.dll",
  1227. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1228. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1229. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1230. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1231. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1232. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1233. "microsoft.testplatform.testhost.17.8.0.nupkg.sha512",
  1234. "microsoft.testplatform.testhost.nuspec"
  1235. ]
  1236. },
  1237. "MimeMapping/3.0.1": {
  1238. "sha512": "lhYcUVnWKaqrboAwi05YLCx3wdluM9Sr1Mv5Emhgc8c8yNVvdiSEnQJMdDvgb4grlYTaOmbnhYaezoeateX95w==",
  1239. "type": "package",
  1240. "path": "mimemapping/3.0.1",
  1241. "files": [
  1242. ".nupkg.metadata",
  1243. ".signature.p7s",
  1244. "README.md",
  1245. "lib/net462/MimeMapping.dll",
  1246. "lib/net462/MimeMapping.xml",
  1247. "lib/netstandard2.0/MimeMapping.dll",
  1248. "lib/netstandard2.0/MimeMapping.xml",
  1249. "mimemapping.3.0.1.nupkg.sha512",
  1250. "mimemapping.nuspec"
  1251. ]
  1252. },
  1253. "MSTest.TestAdapter/3.1.1": {
  1254. "sha512": "kMvdO5dhrUR3o1qk0fzS0St0prlKyMQAfz1ChVAUdGGobTU5ehR60szOFto0+Q7rFG5iXMvTlVIthXM9EcNYnw==",
  1255. "type": "package",
  1256. "path": "mstest.testadapter/3.1.1",
  1257. "files": [
  1258. ".nupkg.metadata",
  1259. ".signature.p7s",
  1260. "Icon.png",
  1261. "build/_localization/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1262. "build/_localization/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1263. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1264. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1265. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1266. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1267. "build/_localization/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1268. "build/_localization/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1269. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1270. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1271. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1272. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1273. "build/_localization/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1274. "build/_localization/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1275. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1276. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1277. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1278. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1279. "build/_localization/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1280. "build/_localization/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1281. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1282. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1283. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1284. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1285. "build/_localization/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1286. "build/_localization/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1287. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1288. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1289. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1290. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1291. "build/_localization/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1292. "build/_localization/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1293. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1294. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1295. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1296. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1297. "build/_localization/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1298. "build/_localization/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1299. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1300. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1301. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1302. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1303. "build/_localization/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1304. "build/_localization/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1305. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1306. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1307. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1308. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1309. "build/_localization/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1310. "build/_localization/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1311. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1312. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1313. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1314. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1315. "build/_localization/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1316. "build/_localization/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1317. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1318. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1319. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1320. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1321. "build/_localization/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1322. "build/_localization/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1323. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1324. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1325. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1326. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1327. "build/_localization/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1328. "build/_localization/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1329. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1330. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1331. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1332. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1333. "build/_localization/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1334. "build/_localization/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1335. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1336. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1337. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1338. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1339. "build/net462/MSTest.TestAdapter.props",
  1340. "build/net462/MSTest.TestAdapter.targets",
  1341. "build/net462/Microsoft.TestPlatform.AdapterUtilities.dll",
  1342. "build/net462/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1343. "build/net462/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1344. "build/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1345. "build/net6.0/MSTest.TestAdapter.props",
  1346. "build/net6.0/MSTest.TestAdapter.targets",
  1347. "build/net6.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1348. "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1349. "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1350. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1351. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1352. "build/netcoreapp3.1/MSTest.TestAdapter.props",
  1353. "build/netcoreapp3.1/Microsoft.TestPlatform.AdapterUtilities.dll",
  1354. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1355. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1356. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1357. "build/netstandard2.0/MSTest.TestAdapter.props",
  1358. "build/netstandard2.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1359. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1360. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1361. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1362. "build/uap10.0/MSTest.TestAdapter.props",
  1363. "build/uap10.0/MSTest.TestAdapter.targets",
  1364. "build/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1365. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1366. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1367. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1368. "mstest.testadapter.3.1.1.nupkg.sha512",
  1369. "mstest.testadapter.nuspec"
  1370. ]
  1371. },
  1372. "MSTest.TestFramework/3.1.1": {
  1373. "sha512": "3rjkGxciNHHmPW8cl1/QVIYjOpfptjmAH5JrLBw+dnMTYDoweg3I579N7OIbar3Zd3q9dfWFrCy2LEV/AmPn3A==",
  1374. "type": "package",
  1375. "path": "mstest.testframework/3.1.1",
  1376. "files": [
  1377. ".nupkg.metadata",
  1378. ".signature.p7s",
  1379. "Icon.png",
  1380. "build/net6.0/MSTest.TestFramework.targets",
  1381. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1382. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1383. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1384. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1385. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1386. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1387. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1388. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1389. "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1390. "lib/net462/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1391. "lib/net462/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1392. "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1393. "lib/net462/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1394. "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1395. "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1396. "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1397. "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1398. "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1399. "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1400. "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1401. "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1402. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1403. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1404. "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1405. "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1406. "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1407. "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1408. "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1409. "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1410. "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1411. "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1412. "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1413. "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1414. "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1415. "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1416. "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1417. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1418. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1419. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1420. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1421. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1422. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1423. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1424. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1425. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1426. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1427. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1428. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1429. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1430. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1431. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1432. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1433. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1434. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1435. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1436. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1437. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1438. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1439. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1440. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1441. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1442. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1443. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1444. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1445. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1446. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1447. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1448. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1449. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1450. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1451. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1452. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1453. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1454. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1455. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1456. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1457. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1458. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1459. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1460. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1461. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1462. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1463. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1464. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1465. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1466. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1467. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1468. "mstest.testframework.3.1.1.nupkg.sha512",
  1469. "mstest.testframework.nuspec"
  1470. ]
  1471. },
  1472. "Newtonsoft.Json/13.0.3": {
  1473. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1474. "type": "package",
  1475. "path": "newtonsoft.json/13.0.3",
  1476. "files": [
  1477. ".nupkg.metadata",
  1478. ".signature.p7s",
  1479. "LICENSE.md",
  1480. "README.md",
  1481. "lib/net20/Newtonsoft.Json.dll",
  1482. "lib/net20/Newtonsoft.Json.xml",
  1483. "lib/net35/Newtonsoft.Json.dll",
  1484. "lib/net35/Newtonsoft.Json.xml",
  1485. "lib/net40/Newtonsoft.Json.dll",
  1486. "lib/net40/Newtonsoft.Json.xml",
  1487. "lib/net45/Newtonsoft.Json.dll",
  1488. "lib/net45/Newtonsoft.Json.xml",
  1489. "lib/net6.0/Newtonsoft.Json.dll",
  1490. "lib/net6.0/Newtonsoft.Json.xml",
  1491. "lib/netstandard1.0/Newtonsoft.Json.dll",
  1492. "lib/netstandard1.0/Newtonsoft.Json.xml",
  1493. "lib/netstandard1.3/Newtonsoft.Json.dll",
  1494. "lib/netstandard1.3/Newtonsoft.Json.xml",
  1495. "lib/netstandard2.0/Newtonsoft.Json.dll",
  1496. "lib/netstandard2.0/Newtonsoft.Json.xml",
  1497. "newtonsoft.json.13.0.3.nupkg.sha512",
  1498. "newtonsoft.json.nuspec",
  1499. "packageIcon.png"
  1500. ]
  1501. },
  1502. "NuGet.Frameworks/6.5.0": {
  1503. "sha512": "QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==",
  1504. "type": "package",
  1505. "path": "nuget.frameworks/6.5.0",
  1506. "files": [
  1507. ".nupkg.metadata",
  1508. ".signature.p7s",
  1509. "README.md",
  1510. "icon.png",
  1511. "lib/net472/NuGet.Frameworks.dll",
  1512. "lib/netstandard2.0/NuGet.Frameworks.dll",
  1513. "nuget.frameworks.6.5.0.nupkg.sha512",
  1514. "nuget.frameworks.nuspec"
  1515. ]
  1516. },
  1517. "Supabase/1.1.1": {
  1518. "sha512": "LW9O05IiZBW3YUDT/gndPKvzT3I7PVgx0j87+AdJu7mT42m7oh2nOnjuDR9pU0E9FE2Ke/QGovrH/u5OjGn7lg==",
  1519. "type": "package",
  1520. "path": "supabase/1.1.1",
  1521. "files": [
  1522. ".nupkg.metadata",
  1523. ".signature.p7s",
  1524. "README.md",
  1525. "icon.png",
  1526. "lib/netstandard2.1/Supabase.dll",
  1527. "lib/netstandard2.1/Supabase.xml",
  1528. "supabase.1.1.1.nupkg.sha512",
  1529. "supabase.nuspec"
  1530. ]
  1531. },
  1532. "Supabase.Core/1.0.0": {
  1533. "sha512": "fJK3Kfq1alw53AGWHBr+dhPu+BUR5dKuBjGhcxrFRVdsFFFWSD5iPIdTYi0CUQDA2b1OjGudYL1xd51yp4hU9Q==",
  1534. "type": "package",
  1535. "path": "supabase.core/1.0.0",
  1536. "files": [
  1537. ".nupkg.metadata",
  1538. ".signature.p7s",
  1539. "README.md",
  1540. "icon.png",
  1541. "lib/netstandard2.0/Supabase.Core.dll",
  1542. "lib/netstandard2.0/Supabase.Core.xml",
  1543. "supabase.core.1.0.0.nupkg.sha512",
  1544. "supabase.core.nuspec"
  1545. ]
  1546. },
  1547. "Supabase.Functions/2.0.0": {
  1548. "sha512": "rc6zlo6XFkQw/B9fEgwpXHtmNPrnnHmtc96PTbviBJ9lzqPT/Un/G3V9MltlORtnG2RLkLvvS/t2AXAO8m2SCQ==",
  1549. "type": "package",
  1550. "path": "supabase.functions/2.0.0",
  1551. "files": [
  1552. ".nupkg.metadata",
  1553. ".signature.p7s",
  1554. "README.md",
  1555. "icon.png",
  1556. "lib/netstandard2.0/Supabase.Functions.dll",
  1557. "lib/netstandard2.0/Supabase.Functions.xml",
  1558. "supabase.functions.2.0.0.nupkg.sha512",
  1559. "supabase.functions.nuspec"
  1560. ]
  1561. },
  1562. "Supabase.Gotrue/6.0.3": {
  1563. "sha512": "8dkg000ib95bJm0ffDPUrALrefBHrkiqcolNjuUEStF2TeytPbV+OtOUJAMBOqZ2f1nsCY61Ck/7NOmOyGteDw==",
  1564. "type": "package",
  1565. "path": "supabase.gotrue/6.0.3",
  1566. "files": [
  1567. ".nupkg.metadata",
  1568. ".signature.p7s",
  1569. "README.md",
  1570. "icon.png",
  1571. "lib/netstandard2.1/Supabase.Gotrue.dll",
  1572. "lib/netstandard2.1/Supabase.Gotrue.xml",
  1573. "supabase.gotrue.6.0.3.nupkg.sha512",
  1574. "supabase.gotrue.nuspec"
  1575. ]
  1576. },
  1577. "Supabase.Postgrest/4.0.3": {
  1578. "sha512": "hpDIh+E5bDgZiHMuM6l+RDm9WWlt/T3fXXFQoqzlsrJFesFMNzkK9feVBG5egJyL/OlwmxuLsnPkR7O+bV3Vcw==",
  1579. "type": "package",
  1580. "path": "supabase.postgrest/4.0.3",
  1581. "files": [
  1582. ".nupkg.metadata",
  1583. ".signature.p7s",
  1584. "README.md",
  1585. "icon.png",
  1586. "lib/netstandard2.0/Supabase.Postgrest.dll",
  1587. "lib/netstandard2.0/Supabase.Postgrest.xml",
  1588. "supabase.postgrest.4.0.3.nupkg.sha512",
  1589. "supabase.postgrest.nuspec"
  1590. ]
  1591. },
  1592. "Supabase.Realtime/7.0.2": {
  1593. "sha512": "9nwlR9RR+uyD63VUaiqAPsd76NaeM6ORAHq7otc4G34RzBtf6aqjPg9IF6d1DGIk78/lJP31+D4NJmQhl3PkJQ==",
  1594. "type": "package",
  1595. "path": "supabase.realtime/7.0.2",
  1596. "files": [
  1597. ".nupkg.metadata",
  1598. ".signature.p7s",
  1599. "README.md",
  1600. "icon.png",
  1601. "lib/netstandard2.0/Supabase.Realtime.dll",
  1602. "lib/netstandard2.0/Supabase.Realtime.xml",
  1603. "lib/netstandard2.1/Supabase.Realtime.dll",
  1604. "lib/netstandard2.1/Supabase.Realtime.xml",
  1605. "supabase.realtime.7.0.2.nupkg.sha512",
  1606. "supabase.realtime.nuspec"
  1607. ]
  1608. },
  1609. "Supabase.Storage/2.0.2": {
  1610. "sha512": "YKxgwVgLjxi32ze29FT8aSLifiTVSZSxSyI9taOewp6wuxh+aMIPLKWtGEhFhegLv2iFwGcZ3ybMDkCi6RB7Rw==",
  1611. "type": "package",
  1612. "path": "supabase.storage/2.0.2",
  1613. "files": [
  1614. ".nupkg.metadata",
  1615. ".signature.p7s",
  1616. "README.md",
  1617. "icon.png",
  1618. "lib/netstandard2.0/Supabase.Storage.dll",
  1619. "lib/netstandard2.0/Supabase.Storage.xml",
  1620. "supabase.storage.2.0.2.nupkg.sha512",
  1621. "supabase.storage.nuspec"
  1622. ]
  1623. },
  1624. "System.IdentityModel.Tokens.Jwt/7.5.1": {
  1625. "sha512": "UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
  1626. "type": "package",
  1627. "path": "system.identitymodel.tokens.jwt/7.5.1",
  1628. "files": [
  1629. ".nupkg.metadata",
  1630. ".signature.p7s",
  1631. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  1632. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  1633. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  1634. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  1635. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  1636. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  1637. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  1638. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  1639. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  1640. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  1641. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  1642. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  1643. "system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
  1644. "system.identitymodel.tokens.jwt.nuspec"
  1645. ]
  1646. },
  1647. "System.Reactive/6.0.0": {
  1648. "sha512": "31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==",
  1649. "type": "package",
  1650. "path": "system.reactive/6.0.0",
  1651. "files": [
  1652. ".nupkg.metadata",
  1653. ".signature.p7s",
  1654. "build/net6.0-windows10.0.19041/_._",
  1655. "build/net6.0/_._",
  1656. "buildTransitive/net6.0-windows10.0.19041/_._",
  1657. "buildTransitive/net6.0/_._",
  1658. "icon.png",
  1659. "lib/net472/System.Reactive.dll",
  1660. "lib/net472/System.Reactive.xml",
  1661. "lib/net6.0-windows10.0.19041/System.Reactive.dll",
  1662. "lib/net6.0-windows10.0.19041/System.Reactive.xml",
  1663. "lib/net6.0/System.Reactive.dll",
  1664. "lib/net6.0/System.Reactive.xml",
  1665. "lib/netstandard2.0/System.Reactive.dll",
  1666. "lib/netstandard2.0/System.Reactive.xml",
  1667. "lib/uap10.0.18362/System.Reactive.dll",
  1668. "lib/uap10.0.18362/System.Reactive.pri",
  1669. "lib/uap10.0.18362/System.Reactive.xml",
  1670. "readme.md",
  1671. "system.reactive.6.0.0.nupkg.sha512",
  1672. "system.reactive.nuspec"
  1673. ]
  1674. },
  1675. "System.Reflection.Metadata/1.6.0": {
  1676. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  1677. "type": "package",
  1678. "path": "system.reflection.metadata/1.6.0",
  1679. "files": [
  1680. ".nupkg.metadata",
  1681. ".signature.p7s",
  1682. "LICENSE.TXT",
  1683. "THIRD-PARTY-NOTICES.TXT",
  1684. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  1685. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  1686. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  1687. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  1688. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  1689. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  1690. "system.reflection.metadata.1.6.0.nupkg.sha512",
  1691. "system.reflection.metadata.nuspec",
  1692. "useSharedDesignerContext.txt",
  1693. "version.txt"
  1694. ]
  1695. },
  1696. "System.Threading.Channels/8.0.0": {
  1697. "sha512": "CMaFr7v+57RW7uZfZkPExsPB6ljwzhjACWW1gfU35Y56rk72B/Wu+sTqxVmGSk4SFUlPc3cjeKND0zktziyjBA==",
  1698. "type": "package",
  1699. "path": "system.threading.channels/8.0.0",
  1700. "files": [
  1701. ".nupkg.metadata",
  1702. ".signature.p7s",
  1703. "Icon.png",
  1704. "LICENSE.TXT",
  1705. "PACKAGE.md",
  1706. "THIRD-PARTY-NOTICES.TXT",
  1707. "buildTransitive/net461/System.Threading.Channels.targets",
  1708. "buildTransitive/net462/_._",
  1709. "buildTransitive/net6.0/_._",
  1710. "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
  1711. "lib/net462/System.Threading.Channels.dll",
  1712. "lib/net462/System.Threading.Channels.xml",
  1713. "lib/net6.0/System.Threading.Channels.dll",
  1714. "lib/net6.0/System.Threading.Channels.xml",
  1715. "lib/net7.0/System.Threading.Channels.dll",
  1716. "lib/net7.0/System.Threading.Channels.xml",
  1717. "lib/net8.0/System.Threading.Channels.dll",
  1718. "lib/net8.0/System.Threading.Channels.xml",
  1719. "lib/netstandard2.0/System.Threading.Channels.dll",
  1720. "lib/netstandard2.0/System.Threading.Channels.xml",
  1721. "lib/netstandard2.1/System.Threading.Channels.dll",
  1722. "lib/netstandard2.1/System.Threading.Channels.xml",
  1723. "system.threading.channels.8.0.0.nupkg.sha512",
  1724. "system.threading.channels.nuspec",
  1725. "useSharedDesignerContext.txt"
  1726. ]
  1727. },
  1728. "Websocket.Client/5.1.1": {
  1729. "sha512": "VpQV6b8HRnw6bFFIPTOOMtOxba3/viH9K2U2LdOYNjQ2b2HrLHxjodmJr3nPwyNSrtrRPr1RDwOMJ5qqlPnCVg==",
  1730. "type": "package",
  1731. "path": "websocket.client/5.1.1",
  1732. "files": [
  1733. ".nupkg.metadata",
  1734. ".signature.p7s",
  1735. "README.md",
  1736. "icon-modern.png",
  1737. "icon.png",
  1738. "lib/net6.0/Websocket.Client.dll",
  1739. "lib/net6.0/Websocket.Client.xml",
  1740. "lib/net7.0/Websocket.Client.dll",
  1741. "lib/net7.0/Websocket.Client.xml",
  1742. "lib/net8.0/Websocket.Client.dll",
  1743. "lib/net8.0/Websocket.Client.xml",
  1744. "lib/netstandard2.1/Websocket.Client.dll",
  1745. "lib/netstandard2.1/Websocket.Client.xml",
  1746. "websocket.client.5.1.1.nupkg.sha512",
  1747. "websocket.client.nuspec"
  1748. ]
  1749. }
  1750. },
  1751. "projectFileDependencyGroups": {
  1752. "net8.0": [
  1753. "MSTest.TestAdapter >= 3.1.1",
  1754. "MSTest.TestFramework >= 3.1.1",
  1755. "Microsoft.NET.Test.Sdk >= 17.8.0",
  1756. "Supabase >= 1.1.1",
  1757. "coverlet.collector >= 6.0.0"
  1758. ]
  1759. },
  1760. "packageFolders": {
  1761. "C:\\Users\\reksh\\.nuget\\packages\\": {}
  1762. },
  1763. "project": {
  1764. "version": "1.0.0",
  1765. "restore": {
  1766. "projectUniqueName": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\Osccela\\Tests\\TestProject2\\TestProject2.csproj",
  1767. "projectName": "TestProject2",
  1768. "projectPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\Osccela\\Tests\\TestProject2\\TestProject2.csproj",
  1769. "packagesPath": "C:\\Users\\reksh\\.nuget\\packages\\",
  1770. "outputPath": "C:\\Users\\reksh\\OneDrive\\Рабочий стол\\Osccela\\Tests\\TestProject2\\obj\\",
  1771. "projectStyle": "PackageReference",
  1772. "configFilePaths": [
  1773. "C:\\Users\\reksh\\AppData\\Roaming\\NuGet\\NuGet.Config",
  1774. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  1775. ],
  1776. "originalTargetFrameworks": [
  1777. "net8.0"
  1778. ],
  1779. "sources": {
  1780. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  1781. "https://api.nuget.org/v3/index.json": {}
  1782. },
  1783. "frameworks": {
  1784. "net8.0": {
  1785. "targetAlias": "net8.0",
  1786. "projectReferences": {}
  1787. }
  1788. },
  1789. "warningProperties": {
  1790. "warnAsError": [
  1791. "NU1605"
  1792. ]
  1793. },
  1794. "restoreAuditProperties": {
  1795. "enableAudit": "true",
  1796. "auditLevel": "low",
  1797. "auditMode": "direct"
  1798. }
  1799. },
  1800. "frameworks": {
  1801. "net8.0": {
  1802. "targetAlias": "net8.0",
  1803. "dependencies": {
  1804. "MSTest.TestAdapter": {
  1805. "target": "Package",
  1806. "version": "[3.1.1, )"
  1807. },
  1808. "MSTest.TestFramework": {
  1809. "target": "Package",
  1810. "version": "[3.1.1, )"
  1811. },
  1812. "Microsoft.NET.Test.Sdk": {
  1813. "target": "Package",
  1814. "version": "[17.8.0, )"
  1815. },
  1816. "Supabase": {
  1817. "target": "Package",
  1818. "version": "[1.1.1, )"
  1819. },
  1820. "coverlet.collector": {
  1821. "target": "Package",
  1822. "version": "[6.0.0, )"
  1823. }
  1824. },
  1825. "imports": [
  1826. "net461",
  1827. "net462",
  1828. "net47",
  1829. "net471",
  1830. "net472",
  1831. "net48",
  1832. "net481"
  1833. ],
  1834. "assetTargetFallback": true,
  1835. "warn": true,
  1836. "frameworkReferences": {
  1837. "Microsoft.NETCore.App": {
  1838. "privateAssets": "all"
  1839. }
  1840. },
  1841. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
  1842. }
  1843. }
  1844. }
  1845. }