DB.Mysql.P.deps.json 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v8.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v8.0": {
  9. "DB.Mysql.P/1.0.0": {
  10. "dependencies": {
  11. "Microsoft.EntityFrameworkCore.InMemory": "8.0.4",
  12. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.4",
  13. "Microsoft.EntityFrameworkCore.Sqlite": "8.0.4",
  14. "Microsoft.EntityFrameworkCore.Tools": "8.0.4",
  15. "Microsoft.Extensions.Logging.Abstractions": "8.0.1",
  16. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  17. "MySql.Data": "8.3.0",
  18. "System.Linq.Dynamic.Core": "1.3.10",
  19. "Thinktecture.EntityFrameworkCore.SqlServer": "8.1.1",
  20. "Apq": "1.0.0.0"
  21. },
  22. "runtime": {
  23. "DB.Mysql.P.dll": {}
  24. }
  25. },
  26. "Azure.Core/1.35.0": {
  27. "dependencies": {
  28. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  29. "System.Diagnostics.DiagnosticSource": "7.0.2",
  30. "System.Memory.Data": "1.0.2",
  31. "System.Numerics.Vectors": "4.5.0",
  32. "System.Text.Encodings.Web": "8.0.0",
  33. "System.Text.Json": "8.0.0",
  34. "System.Threading.Tasks.Extensions": "4.5.4"
  35. },
  36. "runtime": {
  37. "lib/net6.0/Azure.Core.dll": {
  38. "assemblyVersion": "1.35.0.0",
  39. "fileVersion": "1.3500.23.45706"
  40. }
  41. }
  42. },
  43. "Azure.Identity/1.10.3": {
  44. "dependencies": {
  45. "Azure.Core": "1.35.0",
  46. "Microsoft.Identity.Client": "4.56.0",
  47. "Microsoft.Identity.Client.Extensions.Msal": "4.56.0",
  48. "System.Memory": "4.5.4",
  49. "System.Security.Cryptography.ProtectedData": "6.0.0",
  50. "System.Text.Json": "8.0.0",
  51. "System.Threading.Tasks.Extensions": "4.5.4"
  52. },
  53. "runtime": {
  54. "lib/netstandard2.0/Azure.Identity.dll": {
  55. "assemblyVersion": "1.10.3.0",
  56. "fileVersion": "1.1000.323.51804"
  57. }
  58. }
  59. },
  60. "BouncyCastle.Cryptography/2.2.1": {
  61. "runtime": {
  62. "lib/net6.0/BouncyCastle.Cryptography.dll": {
  63. "assemblyVersion": "2.0.0.0",
  64. "fileVersion": "2.2.1.47552"
  65. }
  66. }
  67. },
  68. "Google.Protobuf/3.25.1": {
  69. "runtime": {
  70. "lib/net5.0/Google.Protobuf.dll": {
  71. "assemblyVersion": "3.25.1.0",
  72. "fileVersion": "3.25.1.0"
  73. }
  74. }
  75. },
  76. "Humanizer.Core/2.14.1": {
  77. "runtime": {
  78. "lib/net6.0/Humanizer.dll": {
  79. "assemblyVersion": "2.14.0.0",
  80. "fileVersion": "2.14.1.48190"
  81. }
  82. }
  83. },
  84. "K4os.Compression.LZ4/1.3.5": {
  85. "runtime": {
  86. "lib/net6.0/K4os.Compression.LZ4.dll": {
  87. "assemblyVersion": "1.3.5.0",
  88. "fileVersion": "1.3.5.0"
  89. }
  90. }
  91. },
  92. "K4os.Compression.LZ4.Streams/1.3.5": {
  93. "dependencies": {
  94. "K4os.Compression.LZ4": "1.3.5",
  95. "K4os.Hash.xxHash": "1.0.8",
  96. "System.IO.Pipelines": "6.0.3"
  97. },
  98. "runtime": {
  99. "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
  100. "assemblyVersion": "1.3.5.0",
  101. "fileVersion": "1.3.5.0"
  102. }
  103. }
  104. },
  105. "K4os.Hash.xxHash/1.0.8": {
  106. "runtime": {
  107. "lib/net6.0/K4os.Hash.xxHash.dll": {
  108. "assemblyVersion": "1.0.8.0",
  109. "fileVersion": "1.0.8.0"
  110. }
  111. }
  112. },
  113. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  114. "runtime": {
  115. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  116. "assemblyVersion": "6.0.0.0",
  117. "fileVersion": "6.0.21.52210"
  118. }
  119. }
  120. },
  121. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
  122. "Microsoft.CodeAnalysis.Common/4.5.0": {
  123. "dependencies": {
  124. "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
  125. "System.Collections.Immutable": "6.0.0",
  126. "System.Reflection.Metadata": "6.0.1",
  127. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  128. "System.Text.Encoding.CodePages": "6.0.0"
  129. },
  130. "runtime": {
  131. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  132. "assemblyVersion": "4.5.0.0",
  133. "fileVersion": "4.500.23.10905"
  134. }
  135. },
  136. "resources": {
  137. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  138. "locale": "cs"
  139. },
  140. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  141. "locale": "de"
  142. },
  143. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  144. "locale": "es"
  145. },
  146. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  147. "locale": "fr"
  148. },
  149. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  150. "locale": "it"
  151. },
  152. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  153. "locale": "ja"
  154. },
  155. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  156. "locale": "ko"
  157. },
  158. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  159. "locale": "pl"
  160. },
  161. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  162. "locale": "pt-BR"
  163. },
  164. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  165. "locale": "ru"
  166. },
  167. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  168. "locale": "tr"
  169. },
  170. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  171. "locale": "zh-Hans"
  172. },
  173. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  174. "locale": "zh-Hant"
  175. }
  176. }
  177. },
  178. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  179. "dependencies": {
  180. "Microsoft.CodeAnalysis.Common": "4.5.0"
  181. },
  182. "runtime": {
  183. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  184. "assemblyVersion": "4.5.0.0",
  185. "fileVersion": "4.500.23.10905"
  186. }
  187. },
  188. "resources": {
  189. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  190. "locale": "cs"
  191. },
  192. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  193. "locale": "de"
  194. },
  195. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  196. "locale": "es"
  197. },
  198. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  199. "locale": "fr"
  200. },
  201. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  202. "locale": "it"
  203. },
  204. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  205. "locale": "ja"
  206. },
  207. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  208. "locale": "ko"
  209. },
  210. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  211. "locale": "pl"
  212. },
  213. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  214. "locale": "pt-BR"
  215. },
  216. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  217. "locale": "ru"
  218. },
  219. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  220. "locale": "tr"
  221. },
  222. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  223. "locale": "zh-Hans"
  224. },
  225. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  226. "locale": "zh-Hant"
  227. }
  228. }
  229. },
  230. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  231. "dependencies": {
  232. "Humanizer.Core": "2.14.1",
  233. "Microsoft.CodeAnalysis.CSharp": "4.5.0",
  234. "Microsoft.CodeAnalysis.Common": "4.5.0",
  235. "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
  236. },
  237. "runtime": {
  238. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  239. "assemblyVersion": "4.5.0.0",
  240. "fileVersion": "4.500.23.10905"
  241. }
  242. },
  243. "resources": {
  244. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  245. "locale": "cs"
  246. },
  247. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  248. "locale": "de"
  249. },
  250. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  251. "locale": "es"
  252. },
  253. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  254. "locale": "fr"
  255. },
  256. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  257. "locale": "it"
  258. },
  259. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  260. "locale": "ja"
  261. },
  262. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  263. "locale": "ko"
  264. },
  265. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  266. "locale": "pl"
  267. },
  268. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  269. "locale": "pt-BR"
  270. },
  271. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  272. "locale": "ru"
  273. },
  274. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  275. "locale": "tr"
  276. },
  277. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  278. "locale": "zh-Hans"
  279. },
  280. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  281. "locale": "zh-Hant"
  282. }
  283. }
  284. },
  285. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  286. "dependencies": {
  287. "Humanizer.Core": "2.14.1",
  288. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  289. "Microsoft.CodeAnalysis.Common": "4.5.0",
  290. "System.Composition": "6.0.0",
  291. "System.IO.Pipelines": "6.0.3",
  292. "System.Threading.Channels": "6.0.0"
  293. },
  294. "runtime": {
  295. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  296. "assemblyVersion": "4.5.0.0",
  297. "fileVersion": "4.500.23.10905"
  298. }
  299. },
  300. "resources": {
  301. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  302. "locale": "cs"
  303. },
  304. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  305. "locale": "de"
  306. },
  307. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  308. "locale": "es"
  309. },
  310. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  311. "locale": "fr"
  312. },
  313. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  314. "locale": "it"
  315. },
  316. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  317. "locale": "ja"
  318. },
  319. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  320. "locale": "ko"
  321. },
  322. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  323. "locale": "pl"
  324. },
  325. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  326. "locale": "pt-BR"
  327. },
  328. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  329. "locale": "ru"
  330. },
  331. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  332. "locale": "tr"
  333. },
  334. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  335. "locale": "zh-Hans"
  336. },
  337. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  338. "locale": "zh-Hant"
  339. }
  340. }
  341. },
  342. "Microsoft.CSharp/4.5.0": {},
  343. "Microsoft.Data.SqlClient/5.1.5": {
  344. "dependencies": {
  345. "Azure.Identity": "1.10.3",
  346. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
  347. "Microsoft.Identity.Client": "4.56.0",
  348. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  349. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
  350. "Microsoft.SqlServer.Server": "1.0.0",
  351. "System.Configuration.ConfigurationManager": "6.0.1",
  352. "System.Diagnostics.DiagnosticSource": "7.0.2",
  353. "System.Runtime.Caching": "6.0.0",
  354. "System.Security.Cryptography.Cng": "5.0.0",
  355. "System.Security.Principal.Windows": "5.0.0",
  356. "System.Text.Encoding.CodePages": "6.0.0",
  357. "System.Text.Encodings.Web": "8.0.0"
  358. },
  359. "runtime": {
  360. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  361. "assemblyVersion": "5.0.0.0",
  362. "fileVersion": "5.15.24027.2"
  363. }
  364. },
  365. "runtimeTargets": {
  366. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  367. "rid": "unix",
  368. "assetType": "runtime",
  369. "assemblyVersion": "5.0.0.0",
  370. "fileVersion": "5.15.24027.2"
  371. },
  372. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  373. "rid": "win",
  374. "assetType": "runtime",
  375. "assemblyVersion": "5.0.0.0",
  376. "fileVersion": "5.15.24027.2"
  377. }
  378. }
  379. },
  380. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  381. "runtimeTargets": {
  382. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  383. "rid": "win-arm",
  384. "assetType": "native",
  385. "fileVersion": "5.1.1.0"
  386. },
  387. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  388. "rid": "win-arm64",
  389. "assetType": "native",
  390. "fileVersion": "5.1.1.0"
  391. },
  392. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  393. "rid": "win-x64",
  394. "assetType": "native",
  395. "fileVersion": "5.1.1.0"
  396. },
  397. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  398. "rid": "win-x86",
  399. "assetType": "native",
  400. "fileVersion": "5.1.1.0"
  401. }
  402. }
  403. },
  404. "Microsoft.Data.Sqlite.Core/8.0.4": {
  405. "dependencies": {
  406. "SQLitePCLRaw.core": "2.1.6"
  407. },
  408. "runtime": {
  409. "lib/net8.0/Microsoft.Data.Sqlite.dll": {
  410. "assemblyVersion": "8.0.4.0",
  411. "fileVersion": "8.0.424.16902"
  412. }
  413. }
  414. },
  415. "Microsoft.EntityFrameworkCore/8.0.4": {
  416. "dependencies": {
  417. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.4",
  418. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.4",
  419. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  420. "Microsoft.Extensions.Logging": "8.0.0"
  421. },
  422. "runtime": {
  423. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  424. "assemblyVersion": "8.0.4.0",
  425. "fileVersion": "8.0.424.16902"
  426. }
  427. }
  428. },
  429. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  430. "runtime": {
  431. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  432. "assemblyVersion": "8.0.4.0",
  433. "fileVersion": "8.0.424.16902"
  434. }
  435. }
  436. },
  437. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {},
  438. "Microsoft.EntityFrameworkCore.Design/8.0.4": {
  439. "dependencies": {
  440. "Humanizer.Core": "2.14.1",
  441. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  442. "Microsoft.EntityFrameworkCore.Relational": "8.0.4",
  443. "Microsoft.Extensions.DependencyModel": "8.0.0",
  444. "Mono.TextTemplating": "2.2.1"
  445. },
  446. "runtime": {
  447. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  448. "assemblyVersion": "8.0.4.0",
  449. "fileVersion": "8.0.424.16902"
  450. }
  451. }
  452. },
  453. "Microsoft.EntityFrameworkCore.InMemory/8.0.4": {
  454. "dependencies": {
  455. "Microsoft.EntityFrameworkCore": "8.0.4"
  456. },
  457. "runtime": {
  458. "lib/net8.0/Microsoft.EntityFrameworkCore.InMemory.dll": {
  459. "assemblyVersion": "8.0.4.0",
  460. "fileVersion": "8.0.424.16902"
  461. }
  462. }
  463. },
  464. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  465. "dependencies": {
  466. "Microsoft.EntityFrameworkCore": "8.0.4",
  467. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  468. },
  469. "runtime": {
  470. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  471. "assemblyVersion": "8.0.4.0",
  472. "fileVersion": "8.0.424.16902"
  473. }
  474. }
  475. },
  476. "Microsoft.EntityFrameworkCore.Sqlite/8.0.4": {
  477. "dependencies": {
  478. "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.4",
  479. "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6"
  480. }
  481. },
  482. "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.4": {
  483. "dependencies": {
  484. "Microsoft.Data.Sqlite.Core": "8.0.4",
  485. "Microsoft.EntityFrameworkCore.Relational": "8.0.4",
  486. "Microsoft.Extensions.DependencyModel": "8.0.0"
  487. },
  488. "runtime": {
  489. "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
  490. "assemblyVersion": "8.0.4.0",
  491. "fileVersion": "8.0.424.16902"
  492. }
  493. }
  494. },
  495. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  496. "dependencies": {
  497. "Microsoft.Data.SqlClient": "5.1.5",
  498. "Microsoft.EntityFrameworkCore.Relational": "8.0.4"
  499. },
  500. "runtime": {
  501. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  502. "assemblyVersion": "8.0.4.0",
  503. "fileVersion": "8.0.424.16902"
  504. }
  505. }
  506. },
  507. "Microsoft.EntityFrameworkCore.Tools/8.0.4": {
  508. "dependencies": {
  509. "Microsoft.EntityFrameworkCore.Design": "8.0.4"
  510. }
  511. },
  512. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  513. "dependencies": {
  514. "Microsoft.Extensions.Primitives": "8.0.0"
  515. },
  516. "runtime": {
  517. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  518. "assemblyVersion": "8.0.0.0",
  519. "fileVersion": "8.0.23.53103"
  520. }
  521. }
  522. },
  523. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  524. "dependencies": {
  525. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  526. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  527. "Microsoft.Extensions.Logging.Abstractions": "8.0.1",
  528. "Microsoft.Extensions.Options": "8.0.0",
  529. "Microsoft.Extensions.Primitives": "8.0.0"
  530. },
  531. "runtime": {
  532. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  533. "assemblyVersion": "8.0.0.0",
  534. "fileVersion": "8.0.23.53103"
  535. }
  536. }
  537. },
  538. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  539. "dependencies": {
  540. "Microsoft.Extensions.Primitives": "8.0.0"
  541. },
  542. "runtime": {
  543. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  544. "assemblyVersion": "8.0.0.0",
  545. "fileVersion": "8.0.23.53103"
  546. }
  547. }
  548. },
  549. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  550. "dependencies": {
  551. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  552. },
  553. "runtime": {
  554. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  555. "assemblyVersion": "8.0.0.0",
  556. "fileVersion": "8.0.23.53103"
  557. }
  558. }
  559. },
  560. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  561. "runtime": {
  562. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  563. "assemblyVersion": "8.0.0.0",
  564. "fileVersion": "8.0.324.11423"
  565. }
  566. }
  567. },
  568. "Microsoft.Extensions.DependencyModel/8.0.0": {
  569. "dependencies": {
  570. "System.Text.Encodings.Web": "8.0.0",
  571. "System.Text.Json": "8.0.0"
  572. },
  573. "runtime": {
  574. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  575. "assemblyVersion": "8.0.0.0",
  576. "fileVersion": "8.0.23.53103"
  577. }
  578. }
  579. },
  580. "Microsoft.Extensions.Logging/8.0.0": {
  581. "dependencies": {
  582. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  583. "Microsoft.Extensions.Logging.Abstractions": "8.0.1",
  584. "Microsoft.Extensions.Options": "8.0.0"
  585. },
  586. "runtime": {
  587. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  588. "assemblyVersion": "8.0.0.0",
  589. "fileVersion": "8.0.23.53103"
  590. }
  591. }
  592. },
  593. "Microsoft.Extensions.Logging.Abstractions/8.0.1": {
  594. "dependencies": {
  595. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  596. },
  597. "runtime": {
  598. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  599. "assemblyVersion": "8.0.0.0",
  600. "fileVersion": "8.0.324.11423"
  601. }
  602. }
  603. },
  604. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  605. "dependencies": {
  606. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  607. "Microsoft.Extensions.Logging": "8.0.0",
  608. "Microsoft.Extensions.Logging.Abstractions": "8.0.1"
  609. },
  610. "runtime": {
  611. "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
  612. "assemblyVersion": "8.0.0.0",
  613. "fileVersion": "8.0.23.53103"
  614. }
  615. }
  616. },
  617. "Microsoft.Extensions.ObjectPool/8.0.2": {
  618. "runtime": {
  619. "lib/net8.0/Microsoft.Extensions.ObjectPool.dll": {
  620. "assemblyVersion": "8.0.0.0",
  621. "fileVersion": "8.0.224.6804"
  622. }
  623. }
  624. },
  625. "Microsoft.Extensions.Options/8.0.0": {
  626. "dependencies": {
  627. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  628. "Microsoft.Extensions.Primitives": "8.0.0"
  629. },
  630. "runtime": {
  631. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  632. "assemblyVersion": "8.0.0.0",
  633. "fileVersion": "8.0.23.53103"
  634. }
  635. }
  636. },
  637. "Microsoft.Extensions.Primitives/8.0.0": {
  638. "runtime": {
  639. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  640. "assemblyVersion": "8.0.0.0",
  641. "fileVersion": "8.0.23.53103"
  642. }
  643. }
  644. },
  645. "Microsoft.Identity.Client/4.56.0": {
  646. "dependencies": {
  647. "Microsoft.IdentityModel.Abstractions": "6.35.0"
  648. },
  649. "runtime": {
  650. "lib/net6.0/Microsoft.Identity.Client.dll": {
  651. "assemblyVersion": "4.56.0.0",
  652. "fileVersion": "4.56.0.0"
  653. }
  654. }
  655. },
  656. "Microsoft.Identity.Client.Extensions.Msal/4.56.0": {
  657. "dependencies": {
  658. "Microsoft.Identity.Client": "4.56.0",
  659. "System.IO.FileSystem.AccessControl": "5.0.0",
  660. "System.Security.Cryptography.ProtectedData": "6.0.0"
  661. },
  662. "runtime": {
  663. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  664. "assemblyVersion": "4.56.0.0",
  665. "fileVersion": "4.56.0.0"
  666. }
  667. }
  668. },
  669. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  670. "runtime": {
  671. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  672. "assemblyVersion": "6.35.0.0",
  673. "fileVersion": "6.35.0.41201"
  674. }
  675. }
  676. },
  677. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  678. "dependencies": {
  679. "Microsoft.IdentityModel.Tokens": "6.35.0",
  680. "System.Text.Encoding": "4.3.0",
  681. "System.Text.Encodings.Web": "8.0.0",
  682. "System.Text.Json": "8.0.0"
  683. },
  684. "runtime": {
  685. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  686. "assemblyVersion": "6.35.0.0",
  687. "fileVersion": "6.35.0.41201"
  688. }
  689. }
  690. },
  691. "Microsoft.IdentityModel.Logging/6.35.0": {
  692. "dependencies": {
  693. "Microsoft.IdentityModel.Abstractions": "6.35.0"
  694. },
  695. "runtime": {
  696. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  697. "assemblyVersion": "6.35.0.0",
  698. "fileVersion": "6.35.0.41201"
  699. }
  700. }
  701. },
  702. "Microsoft.IdentityModel.Protocols/6.35.0": {
  703. "dependencies": {
  704. "Microsoft.IdentityModel.Logging": "6.35.0",
  705. "Microsoft.IdentityModel.Tokens": "6.35.0"
  706. },
  707. "runtime": {
  708. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  709. "assemblyVersion": "6.35.0.0",
  710. "fileVersion": "6.35.0.41201"
  711. }
  712. }
  713. },
  714. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  715. "dependencies": {
  716. "Microsoft.IdentityModel.Protocols": "6.35.0",
  717. "System.IdentityModel.Tokens.Jwt": "6.35.0"
  718. },
  719. "runtime": {
  720. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  721. "assemblyVersion": "6.35.0.0",
  722. "fileVersion": "6.35.0.41201"
  723. }
  724. }
  725. },
  726. "Microsoft.IdentityModel.Tokens/6.35.0": {
  727. "dependencies": {
  728. "Microsoft.CSharp": "4.5.0",
  729. "Microsoft.IdentityModel.Logging": "6.35.0",
  730. "System.Security.Cryptography.Cng": "5.0.0"
  731. },
  732. "runtime": {
  733. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  734. "assemblyVersion": "6.35.0.0",
  735. "fileVersion": "6.35.0.41201"
  736. }
  737. }
  738. },
  739. "Microsoft.NETCore.Platforms/1.1.0": {},
  740. "Microsoft.NETCore.Targets/1.1.0": {},
  741. "Microsoft.SqlServer.Server/1.0.0": {
  742. "runtime": {
  743. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  744. "assemblyVersion": "1.0.0.0",
  745. "fileVersion": "1.0.0.0"
  746. }
  747. }
  748. },
  749. "Microsoft.Win32.SystemEvents/6.0.0": {
  750. "runtime": {
  751. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  752. "assemblyVersion": "6.0.0.0",
  753. "fileVersion": "6.0.21.52210"
  754. }
  755. },
  756. "runtimeTargets": {
  757. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  758. "rid": "win",
  759. "assetType": "runtime",
  760. "assemblyVersion": "6.0.0.0",
  761. "fileVersion": "6.0.21.52210"
  762. }
  763. }
  764. },
  765. "Mono.TextTemplating/2.2.1": {
  766. "dependencies": {
  767. "System.CodeDom": "4.4.0"
  768. },
  769. "runtime": {
  770. "lib/netstandard2.0/Mono.TextTemplating.dll": {
  771. "assemblyVersion": "2.2.0.0",
  772. "fileVersion": "2.2.1.1"
  773. }
  774. }
  775. },
  776. "MySql.Data/8.3.0": {
  777. "dependencies": {
  778. "BouncyCastle.Cryptography": "2.2.1",
  779. "Google.Protobuf": "3.25.1",
  780. "K4os.Compression.LZ4.Streams": "1.3.5",
  781. "System.Buffers": "4.5.1",
  782. "System.Configuration.ConfigurationManager": "6.0.1",
  783. "System.Diagnostics.DiagnosticSource": "7.0.2",
  784. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  785. "System.Runtime.Loader": "4.3.0",
  786. "System.Security.Permissions": "6.0.0",
  787. "System.Text.Encoding.CodePages": "6.0.0",
  788. "System.Text.Json": "8.0.0",
  789. "System.Threading.Tasks.Extensions": "4.5.4",
  790. "ZstdSharp.Port": "0.7.1"
  791. },
  792. "runtime": {
  793. "lib/net8.0/MySql.Data.dll": {
  794. "assemblyVersion": "8.3.0.0",
  795. "fileVersion": "8.3.0.0"
  796. }
  797. },
  798. "runtimeTargets": {
  799. "runtimes/win-x64/native/comerr64.dll": {
  800. "rid": "win-x64",
  801. "assetType": "native",
  802. "fileVersion": "4.1.0.0"
  803. },
  804. "runtimes/win-x64/native/gssapi64.dll": {
  805. "rid": "win-x64",
  806. "assetType": "native",
  807. "fileVersion": "4.1.0.0"
  808. },
  809. "runtimes/win-x64/native/k5sprt64.dll": {
  810. "rid": "win-x64",
  811. "assetType": "native",
  812. "fileVersion": "4.1.0.0"
  813. },
  814. "runtimes/win-x64/native/krb5_64.dll": {
  815. "rid": "win-x64",
  816. "assetType": "native",
  817. "fileVersion": "4.1.0.0"
  818. },
  819. "runtimes/win-x64/native/krbcc64.dll": {
  820. "rid": "win-x64",
  821. "assetType": "native",
  822. "fileVersion": "4.1.0.0"
  823. }
  824. }
  825. },
  826. "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": {
  827. "dependencies": {
  828. "SQLitePCLRaw.lib.e_sqlite3": "2.1.6",
  829. "SQLitePCLRaw.provider.e_sqlite3": "2.1.6"
  830. },
  831. "runtime": {
  832. "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
  833. "assemblyVersion": "2.1.6.2060",
  834. "fileVersion": "2.1.6.2060"
  835. }
  836. }
  837. },
  838. "SQLitePCLRaw.core/2.1.6": {
  839. "dependencies": {
  840. "System.Memory": "4.5.4"
  841. },
  842. "runtime": {
  843. "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
  844. "assemblyVersion": "2.1.6.2060",
  845. "fileVersion": "2.1.6.2060"
  846. }
  847. }
  848. },
  849. "SQLitePCLRaw.lib.e_sqlite3/2.1.6": {
  850. "runtimeTargets": {
  851. "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": {
  852. "rid": "browser-wasm",
  853. "assetType": "native",
  854. "fileVersion": "0.0.0.0"
  855. },
  856. "runtimes/linux-arm/native/libe_sqlite3.so": {
  857. "rid": "linux-arm",
  858. "assetType": "native",
  859. "fileVersion": "0.0.0.0"
  860. },
  861. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  862. "rid": "linux-arm64",
  863. "assetType": "native",
  864. "fileVersion": "0.0.0.0"
  865. },
  866. "runtimes/linux-armel/native/libe_sqlite3.so": {
  867. "rid": "linux-armel",
  868. "assetType": "native",
  869. "fileVersion": "0.0.0.0"
  870. },
  871. "runtimes/linux-mips64/native/libe_sqlite3.so": {
  872. "rid": "linux-mips64",
  873. "assetType": "native",
  874. "fileVersion": "0.0.0.0"
  875. },
  876. "runtimes/linux-musl-arm/native/libe_sqlite3.so": {
  877. "rid": "linux-musl-arm",
  878. "assetType": "native",
  879. "fileVersion": "0.0.0.0"
  880. },
  881. "runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
  882. "rid": "linux-musl-arm64",
  883. "assetType": "native",
  884. "fileVersion": "0.0.0.0"
  885. },
  886. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  887. "rid": "linux-musl-x64",
  888. "assetType": "native",
  889. "fileVersion": "0.0.0.0"
  890. },
  891. "runtimes/linux-ppc64le/native/libe_sqlite3.so": {
  892. "rid": "linux-ppc64le",
  893. "assetType": "native",
  894. "fileVersion": "0.0.0.0"
  895. },
  896. "runtimes/linux-s390x/native/libe_sqlite3.so": {
  897. "rid": "linux-s390x",
  898. "assetType": "native",
  899. "fileVersion": "0.0.0.0"
  900. },
  901. "runtimes/linux-x64/native/libe_sqlite3.so": {
  902. "rid": "linux-x64",
  903. "assetType": "native",
  904. "fileVersion": "0.0.0.0"
  905. },
  906. "runtimes/linux-x86/native/libe_sqlite3.so": {
  907. "rid": "linux-x86",
  908. "assetType": "native",
  909. "fileVersion": "0.0.0.0"
  910. },
  911. "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
  912. "rid": "maccatalyst-arm64",
  913. "assetType": "native",
  914. "fileVersion": "0.0.0.0"
  915. },
  916. "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
  917. "rid": "maccatalyst-x64",
  918. "assetType": "native",
  919. "fileVersion": "0.0.0.0"
  920. },
  921. "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
  922. "rid": "osx-arm64",
  923. "assetType": "native",
  924. "fileVersion": "0.0.0.0"
  925. },
  926. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  927. "rid": "osx-x64",
  928. "assetType": "native",
  929. "fileVersion": "0.0.0.0"
  930. },
  931. "runtimes/win-arm/native/e_sqlite3.dll": {
  932. "rid": "win-arm",
  933. "assetType": "native",
  934. "fileVersion": "0.0.0.0"
  935. },
  936. "runtimes/win-arm64/native/e_sqlite3.dll": {
  937. "rid": "win-arm64",
  938. "assetType": "native",
  939. "fileVersion": "0.0.0.0"
  940. },
  941. "runtimes/win-x64/native/e_sqlite3.dll": {
  942. "rid": "win-x64",
  943. "assetType": "native",
  944. "fileVersion": "0.0.0.0"
  945. },
  946. "runtimes/win-x86/native/e_sqlite3.dll": {
  947. "rid": "win-x86",
  948. "assetType": "native",
  949. "fileVersion": "0.0.0.0"
  950. }
  951. }
  952. },
  953. "SQLitePCLRaw.provider.e_sqlite3/2.1.6": {
  954. "dependencies": {
  955. "SQLitePCLRaw.core": "2.1.6"
  956. },
  957. "runtime": {
  958. "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
  959. "assemblyVersion": "2.1.6.2060",
  960. "fileVersion": "2.1.6.2060"
  961. }
  962. }
  963. },
  964. "System.Buffers/4.5.1": {},
  965. "System.CodeDom/4.4.0": {
  966. "runtime": {
  967. "lib/netstandard2.0/System.CodeDom.dll": {
  968. "assemblyVersion": "4.0.0.0",
  969. "fileVersion": "4.6.25519.3"
  970. }
  971. }
  972. },
  973. "System.Collections.Immutable/6.0.0": {
  974. "dependencies": {
  975. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  976. }
  977. },
  978. "System.Composition/6.0.0": {
  979. "dependencies": {
  980. "System.Composition.AttributedModel": "6.0.0",
  981. "System.Composition.Convention": "6.0.0",
  982. "System.Composition.Hosting": "6.0.0",
  983. "System.Composition.Runtime": "6.0.0",
  984. "System.Composition.TypedParts": "6.0.0"
  985. }
  986. },
  987. "System.Composition.AttributedModel/6.0.0": {
  988. "runtime": {
  989. "lib/net6.0/System.Composition.AttributedModel.dll": {
  990. "assemblyVersion": "6.0.0.0",
  991. "fileVersion": "6.0.21.52210"
  992. }
  993. }
  994. },
  995. "System.Composition.Convention/6.0.0": {
  996. "dependencies": {
  997. "System.Composition.AttributedModel": "6.0.0"
  998. },
  999. "runtime": {
  1000. "lib/net6.0/System.Composition.Convention.dll": {
  1001. "assemblyVersion": "6.0.0.0",
  1002. "fileVersion": "6.0.21.52210"
  1003. }
  1004. }
  1005. },
  1006. "System.Composition.Hosting/6.0.0": {
  1007. "dependencies": {
  1008. "System.Composition.Runtime": "6.0.0"
  1009. },
  1010. "runtime": {
  1011. "lib/net6.0/System.Composition.Hosting.dll": {
  1012. "assemblyVersion": "6.0.0.0",
  1013. "fileVersion": "6.0.21.52210"
  1014. }
  1015. }
  1016. },
  1017. "System.Composition.Runtime/6.0.0": {
  1018. "runtime": {
  1019. "lib/net6.0/System.Composition.Runtime.dll": {
  1020. "assemblyVersion": "6.0.0.0",
  1021. "fileVersion": "6.0.21.52210"
  1022. }
  1023. }
  1024. },
  1025. "System.Composition.TypedParts/6.0.0": {
  1026. "dependencies": {
  1027. "System.Composition.AttributedModel": "6.0.0",
  1028. "System.Composition.Hosting": "6.0.0",
  1029. "System.Composition.Runtime": "6.0.0"
  1030. },
  1031. "runtime": {
  1032. "lib/net6.0/System.Composition.TypedParts.dll": {
  1033. "assemblyVersion": "6.0.0.0",
  1034. "fileVersion": "6.0.21.52210"
  1035. }
  1036. }
  1037. },
  1038. "System.Configuration.ConfigurationManager/6.0.1": {
  1039. "dependencies": {
  1040. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1041. "System.Security.Permissions": "6.0.0"
  1042. },
  1043. "runtime": {
  1044. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  1045. "assemblyVersion": "6.0.0.0",
  1046. "fileVersion": "6.0.922.41905"
  1047. }
  1048. }
  1049. },
  1050. "System.Diagnostics.DiagnosticSource/7.0.2": {},
  1051. "System.Drawing.Common/6.0.0": {
  1052. "dependencies": {
  1053. "Microsoft.Win32.SystemEvents": "6.0.0"
  1054. },
  1055. "runtime": {
  1056. "lib/net6.0/System.Drawing.Common.dll": {
  1057. "assemblyVersion": "6.0.0.0",
  1058. "fileVersion": "6.0.21.52210"
  1059. }
  1060. },
  1061. "runtimeTargets": {
  1062. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1063. "rid": "unix",
  1064. "assetType": "runtime",
  1065. "assemblyVersion": "6.0.0.0",
  1066. "fileVersion": "6.0.21.52210"
  1067. },
  1068. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1069. "rid": "win",
  1070. "assetType": "runtime",
  1071. "assemblyVersion": "6.0.0.0",
  1072. "fileVersion": "6.0.21.52210"
  1073. }
  1074. }
  1075. },
  1076. "System.Formats.Asn1/5.0.0": {},
  1077. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  1078. "dependencies": {
  1079. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  1080. "Microsoft.IdentityModel.Tokens": "6.35.0"
  1081. },
  1082. "runtime": {
  1083. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  1084. "assemblyVersion": "6.35.0.0",
  1085. "fileVersion": "6.35.0.41201"
  1086. }
  1087. }
  1088. },
  1089. "System.IO/4.3.0": {
  1090. "dependencies": {
  1091. "Microsoft.NETCore.Platforms": "1.1.0",
  1092. "Microsoft.NETCore.Targets": "1.1.0",
  1093. "System.Runtime": "4.3.0",
  1094. "System.Text.Encoding": "4.3.0",
  1095. "System.Threading.Tasks": "4.3.0"
  1096. }
  1097. },
  1098. "System.IO.FileSystem.AccessControl/5.0.0": {
  1099. "dependencies": {
  1100. "System.Security.AccessControl": "6.0.0",
  1101. "System.Security.Principal.Windows": "5.0.0"
  1102. }
  1103. },
  1104. "System.IO.Pipelines/6.0.3": {
  1105. "runtime": {
  1106. "lib/net6.0/System.IO.Pipelines.dll": {
  1107. "assemblyVersion": "6.0.0.0",
  1108. "fileVersion": "6.0.522.21309"
  1109. }
  1110. }
  1111. },
  1112. "System.Linq.Dynamic.Core/1.3.10": {
  1113. "runtime": {
  1114. "lib/net8.0/System.Linq.Dynamic.Core.dll": {
  1115. "assemblyVersion": "1.3.10.0",
  1116. "fileVersion": "1.3.10.0"
  1117. }
  1118. }
  1119. },
  1120. "System.Memory/4.5.4": {},
  1121. "System.Memory.Data/1.0.2": {
  1122. "dependencies": {
  1123. "System.Text.Encodings.Web": "8.0.0",
  1124. "System.Text.Json": "8.0.0"
  1125. },
  1126. "runtime": {
  1127. "lib/netstandard2.0/System.Memory.Data.dll": {
  1128. "assemblyVersion": "1.0.2.0",
  1129. "fileVersion": "1.0.221.20802"
  1130. }
  1131. }
  1132. },
  1133. "System.Numerics.Vectors/4.5.0": {},
  1134. "System.Reflection/4.3.0": {
  1135. "dependencies": {
  1136. "Microsoft.NETCore.Platforms": "1.1.0",
  1137. "Microsoft.NETCore.Targets": "1.1.0",
  1138. "System.IO": "4.3.0",
  1139. "System.Reflection.Primitives": "4.3.0",
  1140. "System.Runtime": "4.3.0"
  1141. }
  1142. },
  1143. "System.Reflection.Metadata/6.0.1": {
  1144. "dependencies": {
  1145. "System.Collections.Immutable": "6.0.0"
  1146. }
  1147. },
  1148. "System.Reflection.Primitives/4.3.0": {
  1149. "dependencies": {
  1150. "Microsoft.NETCore.Platforms": "1.1.0",
  1151. "Microsoft.NETCore.Targets": "1.1.0",
  1152. "System.Runtime": "4.3.0"
  1153. }
  1154. },
  1155. "System.Runtime/4.3.0": {
  1156. "dependencies": {
  1157. "Microsoft.NETCore.Platforms": "1.1.0",
  1158. "Microsoft.NETCore.Targets": "1.1.0"
  1159. }
  1160. },
  1161. "System.Runtime.Caching/6.0.0": {
  1162. "dependencies": {
  1163. "System.Configuration.ConfigurationManager": "6.0.1"
  1164. },
  1165. "runtime": {
  1166. "lib/net6.0/System.Runtime.Caching.dll": {
  1167. "assemblyVersion": "4.0.0.0",
  1168. "fileVersion": "6.0.21.52210"
  1169. }
  1170. },
  1171. "runtimeTargets": {
  1172. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  1173. "rid": "win",
  1174. "assetType": "runtime",
  1175. "assemblyVersion": "4.0.0.0",
  1176. "fileVersion": "6.0.21.52210"
  1177. }
  1178. }
  1179. },
  1180. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  1181. "System.Runtime.Loader/4.3.0": {
  1182. "dependencies": {
  1183. "System.IO": "4.3.0",
  1184. "System.Reflection": "4.3.0",
  1185. "System.Runtime": "4.3.0"
  1186. }
  1187. },
  1188. "System.Security.AccessControl/6.0.0": {},
  1189. "System.Security.Cryptography.Cng/5.0.0": {
  1190. "dependencies": {
  1191. "System.Formats.Asn1": "5.0.0"
  1192. }
  1193. },
  1194. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1195. "runtime": {
  1196. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1197. "assemblyVersion": "6.0.0.0",
  1198. "fileVersion": "6.0.21.52210"
  1199. }
  1200. },
  1201. "runtimeTargets": {
  1202. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1203. "rid": "win",
  1204. "assetType": "runtime",
  1205. "assemblyVersion": "6.0.0.0",
  1206. "fileVersion": "6.0.21.52210"
  1207. }
  1208. }
  1209. },
  1210. "System.Security.Permissions/6.0.0": {
  1211. "dependencies": {
  1212. "System.Security.AccessControl": "6.0.0",
  1213. "System.Windows.Extensions": "6.0.0"
  1214. },
  1215. "runtime": {
  1216. "lib/net6.0/System.Security.Permissions.dll": {
  1217. "assemblyVersion": "6.0.0.0",
  1218. "fileVersion": "6.0.21.52210"
  1219. }
  1220. }
  1221. },
  1222. "System.Security.Principal.Windows/5.0.0": {},
  1223. "System.Text.Encoding/4.3.0": {
  1224. "dependencies": {
  1225. "Microsoft.NETCore.Platforms": "1.1.0",
  1226. "Microsoft.NETCore.Targets": "1.1.0",
  1227. "System.Runtime": "4.3.0"
  1228. }
  1229. },
  1230. "System.Text.Encoding.CodePages/6.0.0": {
  1231. "dependencies": {
  1232. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1233. }
  1234. },
  1235. "System.Text.Encodings.Web/8.0.0": {},
  1236. "System.Text.Json/8.0.0": {
  1237. "dependencies": {
  1238. "System.Text.Encodings.Web": "8.0.0"
  1239. }
  1240. },
  1241. "System.Threading.Channels/6.0.0": {},
  1242. "System.Threading.Tasks/4.3.0": {
  1243. "dependencies": {
  1244. "Microsoft.NETCore.Platforms": "1.1.0",
  1245. "Microsoft.NETCore.Targets": "1.1.0",
  1246. "System.Runtime": "4.3.0"
  1247. }
  1248. },
  1249. "System.Threading.Tasks.Extensions/4.5.4": {},
  1250. "System.Windows.Extensions/6.0.0": {
  1251. "dependencies": {
  1252. "System.Drawing.Common": "6.0.0"
  1253. },
  1254. "runtime": {
  1255. "lib/net6.0/System.Windows.Extensions.dll": {
  1256. "assemblyVersion": "6.0.0.0",
  1257. "fileVersion": "6.0.21.52210"
  1258. }
  1259. },
  1260. "runtimeTargets": {
  1261. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1262. "rid": "win",
  1263. "assetType": "runtime",
  1264. "assemblyVersion": "6.0.0.0",
  1265. "fileVersion": "6.0.21.52210"
  1266. }
  1267. }
  1268. },
  1269. "Thinktecture.EntityFrameworkCore.BulkOperations/8.1.1": {
  1270. "dependencies": {
  1271. "Thinktecture.EntityFrameworkCore.Relational": "8.1.1"
  1272. },
  1273. "runtime": {
  1274. "lib/net8.0/Thinktecture.EntityFrameworkCore.BulkOperations.dll": {
  1275. "assemblyVersion": "8.1.1.0",
  1276. "fileVersion": "8.1.1.0"
  1277. }
  1278. }
  1279. },
  1280. "Thinktecture.EntityFrameworkCore.Relational/8.1.1": {
  1281. "dependencies": {
  1282. "Microsoft.EntityFrameworkCore.Relational": "8.0.4",
  1283. "Microsoft.Extensions.ObjectPool": "8.0.2"
  1284. },
  1285. "runtime": {
  1286. "lib/net8.0/Thinktecture.EntityFrameworkCore.Relational.dll": {
  1287. "assemblyVersion": "8.1.1.0",
  1288. "fileVersion": "8.1.1.0"
  1289. }
  1290. }
  1291. },
  1292. "Thinktecture.EntityFrameworkCore.SqlServer/8.1.1": {
  1293. "dependencies": {
  1294. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.4",
  1295. "Thinktecture.EntityFrameworkCore.BulkOperations": "8.1.1"
  1296. },
  1297. "runtime": {
  1298. "lib/net8.0/Thinktecture.EntityFrameworkCore.SqlServer.dll": {
  1299. "assemblyVersion": "8.1.1.0",
  1300. "fileVersion": "8.1.1.0"
  1301. }
  1302. }
  1303. },
  1304. "ZstdSharp.Port/0.7.1": {
  1305. "runtime": {
  1306. "lib/net7.0/ZstdSharp.dll": {
  1307. "assemblyVersion": "0.7.1.0",
  1308. "fileVersion": "0.7.1.0"
  1309. }
  1310. }
  1311. },
  1312. "Apq/1.0.0.0": {
  1313. "runtime": {
  1314. "Apq.dll": {
  1315. "assemblyVersion": "1.0.0.0",
  1316. "fileVersion": "1.0.0.0"
  1317. }
  1318. }
  1319. }
  1320. }
  1321. },
  1322. "libraries": {
  1323. "DB.Mysql.P/1.0.0": {
  1324. "type": "project",
  1325. "serviceable": false,
  1326. "sha512": ""
  1327. },
  1328. "Azure.Core/1.35.0": {
  1329. "type": "package",
  1330. "serviceable": true,
  1331. "sha512": "sha512-hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==",
  1332. "path": "azure.core/1.35.0",
  1333. "hashPath": "azure.core.1.35.0.nupkg.sha512"
  1334. },
  1335. "Azure.Identity/1.10.3": {
  1336. "type": "package",
  1337. "serviceable": true,
  1338. "sha512": "sha512-l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==",
  1339. "path": "azure.identity/1.10.3",
  1340. "hashPath": "azure.identity.1.10.3.nupkg.sha512"
  1341. },
  1342. "BouncyCastle.Cryptography/2.2.1": {
  1343. "type": "package",
  1344. "serviceable": true,
  1345. "sha512": "sha512-A6Zr52zVqJKt18ZBsTnX0qhG0kwIQftVAjLmszmkiR/trSp8H+xj1gUOzk7XHwaKgyREMSV1v9XaKrBUeIOdvQ==",
  1346. "path": "bouncycastle.cryptography/2.2.1",
  1347. "hashPath": "bouncycastle.cryptography.2.2.1.nupkg.sha512"
  1348. },
  1349. "Google.Protobuf/3.25.1": {
  1350. "type": "package",
  1351. "serviceable": true,
  1352. "sha512": "sha512-Sw9bq4hOD+AaS3RrnmP5IT25cyZ/T1qpM0e8+G+23Nojhv7+ScJFPEAQo1m4EFQWhXoI4FRZDrK+wjHCPw9yxg==",
  1353. "path": "google.protobuf/3.25.1",
  1354. "hashPath": "google.protobuf.3.25.1.nupkg.sha512"
  1355. },
  1356. "Humanizer.Core/2.14.1": {
  1357. "type": "package",
  1358. "serviceable": true,
  1359. "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  1360. "path": "humanizer.core/2.14.1",
  1361. "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
  1362. },
  1363. "K4os.Compression.LZ4/1.3.5": {
  1364. "type": "package",
  1365. "serviceable": true,
  1366. "sha512": "sha512-TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==",
  1367. "path": "k4os.compression.lz4/1.3.5",
  1368. "hashPath": "k4os.compression.lz4.1.3.5.nupkg.sha512"
  1369. },
  1370. "K4os.Compression.LZ4.Streams/1.3.5": {
  1371. "type": "package",
  1372. "serviceable": true,
  1373. "sha512": "sha512-M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==",
  1374. "path": "k4os.compression.lz4.streams/1.3.5",
  1375. "hashPath": "k4os.compression.lz4.streams.1.3.5.nupkg.sha512"
  1376. },
  1377. "K4os.Hash.xxHash/1.0.8": {
  1378. "type": "package",
  1379. "serviceable": true,
  1380. "sha512": "sha512-Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
  1381. "path": "k4os.hash.xxhash/1.0.8",
  1382. "hashPath": "k4os.hash.xxhash.1.0.8.nupkg.sha512"
  1383. },
  1384. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  1385. "type": "package",
  1386. "serviceable": true,
  1387. "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  1388. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  1389. "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
  1390. },
  1391. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  1392. "type": "package",
  1393. "serviceable": true,
  1394. "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  1395. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  1396. "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
  1397. },
  1398. "Microsoft.CodeAnalysis.Common/4.5.0": {
  1399. "type": "package",
  1400. "serviceable": true,
  1401. "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  1402. "path": "microsoft.codeanalysis.common/4.5.0",
  1403. "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
  1404. },
  1405. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  1406. "type": "package",
  1407. "serviceable": true,
  1408. "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  1409. "path": "microsoft.codeanalysis.csharp/4.5.0",
  1410. "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
  1411. },
  1412. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  1413. "type": "package",
  1414. "serviceable": true,
  1415. "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
  1416. "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
  1417. "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
  1418. },
  1419. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  1420. "type": "package",
  1421. "serviceable": true,
  1422. "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
  1423. "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
  1424. "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
  1425. },
  1426. "Microsoft.CSharp/4.5.0": {
  1427. "type": "package",
  1428. "serviceable": true,
  1429. "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  1430. "path": "microsoft.csharp/4.5.0",
  1431. "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
  1432. },
  1433. "Microsoft.Data.SqlClient/5.1.5": {
  1434. "type": "package",
  1435. "serviceable": true,
  1436. "sha512": "sha512-6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
  1437. "path": "microsoft.data.sqlclient/5.1.5",
  1438. "hashPath": "microsoft.data.sqlclient.5.1.5.nupkg.sha512"
  1439. },
  1440. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  1441. "type": "package",
  1442. "serviceable": true,
  1443. "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
  1444. "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
  1445. "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512"
  1446. },
  1447. "Microsoft.Data.Sqlite.Core/8.0.4": {
  1448. "type": "package",
  1449. "serviceable": true,
  1450. "sha512": "sha512-x5FE5m1h31UIDEk0j3r38HtYvsa0fxd5jXzvE/SARI7LecXt/jm4z2SUl6TEoJGQOo9Ow2wg3a0MU2E1TVVAdA==",
  1451. "path": "microsoft.data.sqlite.core/8.0.4",
  1452. "hashPath": "microsoft.data.sqlite.core.8.0.4.nupkg.sha512"
  1453. },
  1454. "Microsoft.EntityFrameworkCore/8.0.4": {
  1455. "type": "package",
  1456. "serviceable": true,
  1457. "sha512": "sha512-/kyu9pXuxQvhg8RO/oN5Q5Og7cDIVvZtrt1z48rX7Yido+zEGkUkp3/Bjd9u45N2uuPPF8mn2pKDlAewCvv3/Q==",
  1458. "path": "microsoft.entityframeworkcore/8.0.4",
  1459. "hashPath": "microsoft.entityframeworkcore.8.0.4.nupkg.sha512"
  1460. },
  1461. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  1462. "type": "package",
  1463. "serviceable": true,
  1464. "sha512": "sha512-S50pjtPNOvRktacaO6UAhvGCPMT56wxqEq8fQfcjaSUySPGba6mKWo6ackw6DdeAR1cA6U+U0uj27warA2KtJA==",
  1465. "path": "microsoft.entityframeworkcore.abstractions/8.0.4",
  1466. "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.4.nupkg.sha512"
  1467. },
  1468. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  1469. "type": "package",
  1470. "serviceable": true,
  1471. "sha512": "sha512-P8hfMZECdbgle4Us8HGRUKAjqVwgbtr5JqtCxqEoiVORrNQAmcpu3g1NKwTAoUsO9Z0QRgExtYoAmdggR/DkMQ==",
  1472. "path": "microsoft.entityframeworkcore.analyzers/8.0.4",
  1473. "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.4.nupkg.sha512"
  1474. },
  1475. "Microsoft.EntityFrameworkCore.Design/8.0.4": {
  1476. "type": "package",
  1477. "serviceable": true,
  1478. "sha512": "sha512-QD5/h3+h4N7GlUaA4bzaYFW9CoeB7ne2KMiDIENIT0GPx+E6up/v9fDA36FAS3NIq9zeKUAQgN8aj6IwE7tMGw==",
  1479. "path": "microsoft.entityframeworkcore.design/8.0.4",
  1480. "hashPath": "microsoft.entityframeworkcore.design.8.0.4.nupkg.sha512"
  1481. },
  1482. "Microsoft.EntityFrameworkCore.InMemory/8.0.4": {
  1483. "type": "package",
  1484. "serviceable": true,
  1485. "sha512": "sha512-3fj0V/NKG66LLwUtoDofSyogku1ueF78uUIdGPEJJhS3MW7w3xLsizMaDYX+ooR74IM96YJI5N3tyOU5FZiiwg==",
  1486. "path": "microsoft.entityframeworkcore.inmemory/8.0.4",
  1487. "hashPath": "microsoft.entityframeworkcore.inmemory.8.0.4.nupkg.sha512"
  1488. },
  1489. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  1490. "type": "package",
  1491. "serviceable": true,
  1492. "sha512": "sha512-aWLT6e9a8oMzXgF0YQpYYa3mDeU+yb2UQSQ+RrIgyGgSpzPfSKgpA7v2kOVDuZr2AQ6NNAlWPaBG7wZuKQI96w==",
  1493. "path": "microsoft.entityframeworkcore.relational/8.0.4",
  1494. "hashPath": "microsoft.entityframeworkcore.relational.8.0.4.nupkg.sha512"
  1495. },
  1496. "Microsoft.EntityFrameworkCore.Sqlite/8.0.4": {
  1497. "type": "package",
  1498. "serviceable": true,
  1499. "sha512": "sha512-7y0Z7y1SwBNswxlNY9zduqk5I0+pWWzYIFhtJtvo55RcfomIQDmOODG/s5+iOxv0JoVHjFOgAc8AMI3DwAaoig==",
  1500. "path": "microsoft.entityframeworkcore.sqlite/8.0.4",
  1501. "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.4.nupkg.sha512"
  1502. },
  1503. "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.4": {
  1504. "type": "package",
  1505. "serviceable": true,
  1506. "sha512": "sha512-4XCrL6vdFQSXZY6b89cXvjYNvTKP5azMvgacI2XE+B0D7Lg3zYSjmfLZYWfR3j3izx5X8xCTkHZnaRHHfHcv+w==",
  1507. "path": "microsoft.entityframeworkcore.sqlite.core/8.0.4",
  1508. "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.4.nupkg.sha512"
  1509. },
  1510. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  1511. "type": "package",
  1512. "serviceable": true,
  1513. "sha512": "sha512-/IlHNxzZGqiuVi+FPtjFZgAOfY989fTPtxw8zhmlFwv5M2WJzBSMlAP4jNVQX/k7/qu+y1YvddPxg4O5QdeRXw==",
  1514. "path": "microsoft.entityframeworkcore.sqlserver/8.0.4",
  1515. "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.4.nupkg.sha512"
  1516. },
  1517. "Microsoft.EntityFrameworkCore.Tools/8.0.4": {
  1518. "type": "package",
  1519. "serviceable": true,
  1520. "sha512": "sha512-txPWQf+SGx8Aa6Z8FbdQ8zMHckArroaE0AlV6iqnqJp9w46RiOBtkJlkPgohteQS1uhxIwjtHfwFiQATw059fg==",
  1521. "path": "microsoft.entityframeworkcore.tools/8.0.4",
  1522. "hashPath": "microsoft.entityframeworkcore.tools.8.0.4.nupkg.sha512"
  1523. },
  1524. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1525. "type": "package",
  1526. "serviceable": true,
  1527. "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  1528. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  1529. "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
  1530. },
  1531. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  1532. "type": "package",
  1533. "serviceable": true,
  1534. "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  1535. "path": "microsoft.extensions.caching.memory/8.0.0",
  1536. "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512"
  1537. },
  1538. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  1539. "type": "package",
  1540. "serviceable": true,
  1541. "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  1542. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  1543. "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
  1544. },
  1545. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  1546. "type": "package",
  1547. "serviceable": true,
  1548. "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  1549. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  1550. "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
  1551. },
  1552. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  1553. "type": "package",
  1554. "serviceable": true,
  1555. "sha512": "sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==",
  1556. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1",
  1557. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512"
  1558. },
  1559. "Microsoft.Extensions.DependencyModel/8.0.0": {
  1560. "type": "package",
  1561. "serviceable": true,
  1562. "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  1563. "path": "microsoft.extensions.dependencymodel/8.0.0",
  1564. "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512"
  1565. },
  1566. "Microsoft.Extensions.Logging/8.0.0": {
  1567. "type": "package",
  1568. "serviceable": true,
  1569. "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  1570. "path": "microsoft.extensions.logging/8.0.0",
  1571. "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
  1572. },
  1573. "Microsoft.Extensions.Logging.Abstractions/8.0.1": {
  1574. "type": "package",
  1575. "serviceable": true,
  1576. "sha512": "sha512-RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==",
  1577. "path": "microsoft.extensions.logging.abstractions/8.0.1",
  1578. "hashPath": "microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512"
  1579. },
  1580. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  1581. "type": "package",
  1582. "serviceable": true,
  1583. "sha512": "sha512-dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
  1584. "path": "microsoft.extensions.logging.debug/8.0.0",
  1585. "hashPath": "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512"
  1586. },
  1587. "Microsoft.Extensions.ObjectPool/8.0.2": {
  1588. "type": "package",
  1589. "serviceable": true,
  1590. "sha512": "sha512-LA7lDy048CVjGCwsPqRFVwH8vl5ooHmSFji13Oczw+mOnGhqenWXttkWcJ5dhIR0bhayZrQz4BaSPEVtE8Tt0A==",
  1591. "path": "microsoft.extensions.objectpool/8.0.2",
  1592. "hashPath": "microsoft.extensions.objectpool.8.0.2.nupkg.sha512"
  1593. },
  1594. "Microsoft.Extensions.Options/8.0.0": {
  1595. "type": "package",
  1596. "serviceable": true,
  1597. "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  1598. "path": "microsoft.extensions.options/8.0.0",
  1599. "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
  1600. },
  1601. "Microsoft.Extensions.Primitives/8.0.0": {
  1602. "type": "package",
  1603. "serviceable": true,
  1604. "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  1605. "path": "microsoft.extensions.primitives/8.0.0",
  1606. "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
  1607. },
  1608. "Microsoft.Identity.Client/4.56.0": {
  1609. "type": "package",
  1610. "serviceable": true,
  1611. "sha512": "sha512-rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==",
  1612. "path": "microsoft.identity.client/4.56.0",
  1613. "hashPath": "microsoft.identity.client.4.56.0.nupkg.sha512"
  1614. },
  1615. "Microsoft.Identity.Client.Extensions.Msal/4.56.0": {
  1616. "type": "package",
  1617. "serviceable": true,
  1618. "sha512": "sha512-H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==",
  1619. "path": "microsoft.identity.client.extensions.msal/4.56.0",
  1620. "hashPath": "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512"
  1621. },
  1622. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  1623. "type": "package",
  1624. "serviceable": true,
  1625. "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
  1626. "path": "microsoft.identitymodel.abstractions/6.35.0",
  1627. "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
  1628. },
  1629. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  1630. "type": "package",
  1631. "serviceable": true,
  1632. "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
  1633. "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
  1634. "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512"
  1635. },
  1636. "Microsoft.IdentityModel.Logging/6.35.0": {
  1637. "type": "package",
  1638. "serviceable": true,
  1639. "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
  1640. "path": "microsoft.identitymodel.logging/6.35.0",
  1641. "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512"
  1642. },
  1643. "Microsoft.IdentityModel.Protocols/6.35.0": {
  1644. "type": "package",
  1645. "serviceable": true,
  1646. "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
  1647. "path": "microsoft.identitymodel.protocols/6.35.0",
  1648. "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512"
  1649. },
  1650. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  1651. "type": "package",
  1652. "serviceable": true,
  1653. "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
  1654. "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
  1655. "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512"
  1656. },
  1657. "Microsoft.IdentityModel.Tokens/6.35.0": {
  1658. "type": "package",
  1659. "serviceable": true,
  1660. "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
  1661. "path": "microsoft.identitymodel.tokens/6.35.0",
  1662. "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512"
  1663. },
  1664. "Microsoft.NETCore.Platforms/1.1.0": {
  1665. "type": "package",
  1666. "serviceable": true,
  1667. "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  1668. "path": "microsoft.netcore.platforms/1.1.0",
  1669. "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
  1670. },
  1671. "Microsoft.NETCore.Targets/1.1.0": {
  1672. "type": "package",
  1673. "serviceable": true,
  1674. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1675. "path": "microsoft.netcore.targets/1.1.0",
  1676. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1677. },
  1678. "Microsoft.SqlServer.Server/1.0.0": {
  1679. "type": "package",
  1680. "serviceable": true,
  1681. "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  1682. "path": "microsoft.sqlserver.server/1.0.0",
  1683. "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
  1684. },
  1685. "Microsoft.Win32.SystemEvents/6.0.0": {
  1686. "type": "package",
  1687. "serviceable": true,
  1688. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1689. "path": "microsoft.win32.systemevents/6.0.0",
  1690. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1691. },
  1692. "Mono.TextTemplating/2.2.1": {
  1693. "type": "package",
  1694. "serviceable": true,
  1695. "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
  1696. "path": "mono.texttemplating/2.2.1",
  1697. "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
  1698. },
  1699. "MySql.Data/8.3.0": {
  1700. "type": "package",
  1701. "serviceable": true,
  1702. "sha512": "sha512-bAQlkLYvTYt5MtXAgHGURSBSUWynIvyN2FVQFUg51I2grxsOfnJSyGvO7YsDRnU7IvUNfMdxq8rNXiP5P4hMlw==",
  1703. "path": "mysql.data/8.3.0",
  1704. "hashPath": "mysql.data.8.3.0.nupkg.sha512"
  1705. },
  1706. "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": {
  1707. "type": "package",
  1708. "serviceable": true,
  1709. "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==",
  1710. "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6",
  1711. "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512"
  1712. },
  1713. "SQLitePCLRaw.core/2.1.6": {
  1714. "type": "package",
  1715. "serviceable": true,
  1716. "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==",
  1717. "path": "sqlitepclraw.core/2.1.6",
  1718. "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512"
  1719. },
  1720. "SQLitePCLRaw.lib.e_sqlite3/2.1.6": {
  1721. "type": "package",
  1722. "serviceable": true,
  1723. "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==",
  1724. "path": "sqlitepclraw.lib.e_sqlite3/2.1.6",
  1725. "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512"
  1726. },
  1727. "SQLitePCLRaw.provider.e_sqlite3/2.1.6": {
  1728. "type": "package",
  1729. "serviceable": true,
  1730. "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==",
  1731. "path": "sqlitepclraw.provider.e_sqlite3/2.1.6",
  1732. "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512"
  1733. },
  1734. "System.Buffers/4.5.1": {
  1735. "type": "package",
  1736. "serviceable": true,
  1737. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1738. "path": "system.buffers/4.5.1",
  1739. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1740. },
  1741. "System.CodeDom/4.4.0": {
  1742. "type": "package",
  1743. "serviceable": true,
  1744. "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  1745. "path": "system.codedom/4.4.0",
  1746. "hashPath": "system.codedom.4.4.0.nupkg.sha512"
  1747. },
  1748. "System.Collections.Immutable/6.0.0": {
  1749. "type": "package",
  1750. "serviceable": true,
  1751. "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  1752. "path": "system.collections.immutable/6.0.0",
  1753. "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
  1754. },
  1755. "System.Composition/6.0.0": {
  1756. "type": "package",
  1757. "serviceable": true,
  1758. "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
  1759. "path": "system.composition/6.0.0",
  1760. "hashPath": "system.composition.6.0.0.nupkg.sha512"
  1761. },
  1762. "System.Composition.AttributedModel/6.0.0": {
  1763. "type": "package",
  1764. "serviceable": true,
  1765. "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
  1766. "path": "system.composition.attributedmodel/6.0.0",
  1767. "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
  1768. },
  1769. "System.Composition.Convention/6.0.0": {
  1770. "type": "package",
  1771. "serviceable": true,
  1772. "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
  1773. "path": "system.composition.convention/6.0.0",
  1774. "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
  1775. },
  1776. "System.Composition.Hosting/6.0.0": {
  1777. "type": "package",
  1778. "serviceable": true,
  1779. "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
  1780. "path": "system.composition.hosting/6.0.0",
  1781. "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
  1782. },
  1783. "System.Composition.Runtime/6.0.0": {
  1784. "type": "package",
  1785. "serviceable": true,
  1786. "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
  1787. "path": "system.composition.runtime/6.0.0",
  1788. "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
  1789. },
  1790. "System.Composition.TypedParts/6.0.0": {
  1791. "type": "package",
  1792. "serviceable": true,
  1793. "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
  1794. "path": "system.composition.typedparts/6.0.0",
  1795. "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
  1796. },
  1797. "System.Configuration.ConfigurationManager/6.0.1": {
  1798. "type": "package",
  1799. "serviceable": true,
  1800. "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  1801. "path": "system.configuration.configurationmanager/6.0.1",
  1802. "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
  1803. },
  1804. "System.Diagnostics.DiagnosticSource/7.0.2": {
  1805. "type": "package",
  1806. "serviceable": true,
  1807. "sha512": "sha512-hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  1808. "path": "system.diagnostics.diagnosticsource/7.0.2",
  1809. "hashPath": "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512"
  1810. },
  1811. "System.Drawing.Common/6.0.0": {
  1812. "type": "package",
  1813. "serviceable": true,
  1814. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  1815. "path": "system.drawing.common/6.0.0",
  1816. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  1817. },
  1818. "System.Formats.Asn1/5.0.0": {
  1819. "type": "package",
  1820. "serviceable": true,
  1821. "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  1822. "path": "system.formats.asn1/5.0.0",
  1823. "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
  1824. },
  1825. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  1826. "type": "package",
  1827. "serviceable": true,
  1828. "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
  1829. "path": "system.identitymodel.tokens.jwt/6.35.0",
  1830. "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512"
  1831. },
  1832. "System.IO/4.3.0": {
  1833. "type": "package",
  1834. "serviceable": true,
  1835. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1836. "path": "system.io/4.3.0",
  1837. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1838. },
  1839. "System.IO.FileSystem.AccessControl/5.0.0": {
  1840. "type": "package",
  1841. "serviceable": true,
  1842. "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
  1843. "path": "system.io.filesystem.accesscontrol/5.0.0",
  1844. "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
  1845. },
  1846. "System.IO.Pipelines/6.0.3": {
  1847. "type": "package",
  1848. "serviceable": true,
  1849. "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  1850. "path": "system.io.pipelines/6.0.3",
  1851. "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
  1852. },
  1853. "System.Linq.Dynamic.Core/1.3.10": {
  1854. "type": "package",
  1855. "serviceable": true,
  1856. "sha512": "sha512-xkMCropqN0WTgPuPbIlYgXss1KAyjd+8VRbx/BFh57yUOi5LylljIpK0iGa58ziXr+xJqzmcaRGtKHlsI5C4tg==",
  1857. "path": "system.linq.dynamic.core/1.3.10",
  1858. "hashPath": "system.linq.dynamic.core.1.3.10.nupkg.sha512"
  1859. },
  1860. "System.Memory/4.5.4": {
  1861. "type": "package",
  1862. "serviceable": true,
  1863. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  1864. "path": "system.memory/4.5.4",
  1865. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  1866. },
  1867. "System.Memory.Data/1.0.2": {
  1868. "type": "package",
  1869. "serviceable": true,
  1870. "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  1871. "path": "system.memory.data/1.0.2",
  1872. "hashPath": "system.memory.data.1.0.2.nupkg.sha512"
  1873. },
  1874. "System.Numerics.Vectors/4.5.0": {
  1875. "type": "package",
  1876. "serviceable": true,
  1877. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  1878. "path": "system.numerics.vectors/4.5.0",
  1879. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  1880. },
  1881. "System.Reflection/4.3.0": {
  1882. "type": "package",
  1883. "serviceable": true,
  1884. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1885. "path": "system.reflection/4.3.0",
  1886. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1887. },
  1888. "System.Reflection.Metadata/6.0.1": {
  1889. "type": "package",
  1890. "serviceable": true,
  1891. "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  1892. "path": "system.reflection.metadata/6.0.1",
  1893. "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512"
  1894. },
  1895. "System.Reflection.Primitives/4.3.0": {
  1896. "type": "package",
  1897. "serviceable": true,
  1898. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1899. "path": "system.reflection.primitives/4.3.0",
  1900. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1901. },
  1902. "System.Runtime/4.3.0": {
  1903. "type": "package",
  1904. "serviceable": true,
  1905. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1906. "path": "system.runtime/4.3.0",
  1907. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1908. },
  1909. "System.Runtime.Caching/6.0.0": {
  1910. "type": "package",
  1911. "serviceable": true,
  1912. "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  1913. "path": "system.runtime.caching/6.0.0",
  1914. "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512"
  1915. },
  1916. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1917. "type": "package",
  1918. "serviceable": true,
  1919. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1920. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1921. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  1922. },
  1923. "System.Runtime.Loader/4.3.0": {
  1924. "type": "package",
  1925. "serviceable": true,
  1926. "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  1927. "path": "system.runtime.loader/4.3.0",
  1928. "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
  1929. },
  1930. "System.Security.AccessControl/6.0.0": {
  1931. "type": "package",
  1932. "serviceable": true,
  1933. "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  1934. "path": "system.security.accesscontrol/6.0.0",
  1935. "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
  1936. },
  1937. "System.Security.Cryptography.Cng/5.0.0": {
  1938. "type": "package",
  1939. "serviceable": true,
  1940. "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  1941. "path": "system.security.cryptography.cng/5.0.0",
  1942. "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
  1943. },
  1944. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1945. "type": "package",
  1946. "serviceable": true,
  1947. "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  1948. "path": "system.security.cryptography.protecteddata/6.0.0",
  1949. "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
  1950. },
  1951. "System.Security.Permissions/6.0.0": {
  1952. "type": "package",
  1953. "serviceable": true,
  1954. "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  1955. "path": "system.security.permissions/6.0.0",
  1956. "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
  1957. },
  1958. "System.Security.Principal.Windows/5.0.0": {
  1959. "type": "package",
  1960. "serviceable": true,
  1961. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1962. "path": "system.security.principal.windows/5.0.0",
  1963. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  1964. },
  1965. "System.Text.Encoding/4.3.0": {
  1966. "type": "package",
  1967. "serviceable": true,
  1968. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1969. "path": "system.text.encoding/4.3.0",
  1970. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1971. },
  1972. "System.Text.Encoding.CodePages/6.0.0": {
  1973. "type": "package",
  1974. "serviceable": true,
  1975. "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  1976. "path": "system.text.encoding.codepages/6.0.0",
  1977. "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
  1978. },
  1979. "System.Text.Encodings.Web/8.0.0": {
  1980. "type": "package",
  1981. "serviceable": true,
  1982. "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  1983. "path": "system.text.encodings.web/8.0.0",
  1984. "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
  1985. },
  1986. "System.Text.Json/8.0.0": {
  1987. "type": "package",
  1988. "serviceable": true,
  1989. "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  1990. "path": "system.text.json/8.0.0",
  1991. "hashPath": "system.text.json.8.0.0.nupkg.sha512"
  1992. },
  1993. "System.Threading.Channels/6.0.0": {
  1994. "type": "package",
  1995. "serviceable": true,
  1996. "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
  1997. "path": "system.threading.channels/6.0.0",
  1998. "hashPath": "system.threading.channels.6.0.0.nupkg.sha512"
  1999. },
  2000. "System.Threading.Tasks/4.3.0": {
  2001. "type": "package",
  2002. "serviceable": true,
  2003. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2004. "path": "system.threading.tasks/4.3.0",
  2005. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2006. },
  2007. "System.Threading.Tasks.Extensions/4.5.4": {
  2008. "type": "package",
  2009. "serviceable": true,
  2010. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  2011. "path": "system.threading.tasks.extensions/4.5.4",
  2012. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  2013. },
  2014. "System.Windows.Extensions/6.0.0": {
  2015. "type": "package",
  2016. "serviceable": true,
  2017. "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  2018. "path": "system.windows.extensions/6.0.0",
  2019. "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
  2020. },
  2021. "Thinktecture.EntityFrameworkCore.BulkOperations/8.1.1": {
  2022. "type": "package",
  2023. "serviceable": true,
  2024. "sha512": "sha512-ewFNJltQ8Q13xa+wP/qMu0RWPDqvR7VdhN41hDJD+znS4N56mxNIVTdzourN8ZVV+P8JXeLDIkpCm90g36puWw==",
  2025. "path": "thinktecture.entityframeworkcore.bulkoperations/8.1.1",
  2026. "hashPath": "thinktecture.entityframeworkcore.bulkoperations.8.1.1.nupkg.sha512"
  2027. },
  2028. "Thinktecture.EntityFrameworkCore.Relational/8.1.1": {
  2029. "type": "package",
  2030. "serviceable": true,
  2031. "sha512": "sha512-F7sH7rWX+A0qJZcQ1Rb4OSJamGyg65OiJjPhDPOGxqQ1HrQgRfWbG8e/EoyzGIcv1FK3ozxttClow19NKSoGfA==",
  2032. "path": "thinktecture.entityframeworkcore.relational/8.1.1",
  2033. "hashPath": "thinktecture.entityframeworkcore.relational.8.1.1.nupkg.sha512"
  2034. },
  2035. "Thinktecture.EntityFrameworkCore.SqlServer/8.1.1": {
  2036. "type": "package",
  2037. "serviceable": true,
  2038. "sha512": "sha512-U3T58SG8Y9hEPbW9Qm10+YZjmDfQgPWm843VufaRCiRwBzDkcYwVmTjE+TETI5Gv/UczQznqa974rNrHZcvvpw==",
  2039. "path": "thinktecture.entityframeworkcore.sqlserver/8.1.1",
  2040. "hashPath": "thinktecture.entityframeworkcore.sqlserver.8.1.1.nupkg.sha512"
  2041. },
  2042. "ZstdSharp.Port/0.7.1": {
  2043. "type": "package",
  2044. "serviceable": true,
  2045. "sha512": "sha512-Idgg+mJEyAujqDPzA3APy9dNoyw0YQcNA65GgYjktDRtJ+nvx/hv+J+m6Eax3JJMGEYGy04oc5YNP6ZvQ3Y1vQ==",
  2046. "path": "zstdsharp.port/0.7.1",
  2047. "hashPath": "zstdsharp.port.0.7.1.nupkg.sha512"
  2048. },
  2049. "Apq/1.0.0.0": {
  2050. "type": "reference",
  2051. "serviceable": false,
  2052. "sha512": ""
  2053. }
  2054. }
  2055. }