AipGateway.API.deps.json 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v8.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v8.0": {
  9. "AipGateway.API/1.0.0": {
  10. "dependencies": {
  11. "AipGateway.API.Application": "1.0.0",
  12. "AipGateway.API.Domain": "1.0.0",
  13. "MicroElements.Swashbuckle.FluentValidation": "6.0.0",
  14. "Microsoft.EntityFrameworkCore.Design": "8.0.4",
  15. "Swashbuckle.AspNetCore": "6.5.0",
  16. "Swashbuckle.AspNetCore.Annotations": "6.5.0",
  17. "Swashbuckle.AspNetCore.Filters": "8.0.2"
  18. },
  19. "runtime": {
  20. "AipGateway.API.dll": {}
  21. }
  22. },
  23. "AutoMapper/13.0.1": {
  24. "dependencies": {
  25. "Microsoft.Extensions.Options": "8.0.0"
  26. },
  27. "runtime": {
  28. "lib/net6.0/AutoMapper.dll": {
  29. "assemblyVersion": "13.0.0.0",
  30. "fileVersion": "13.0.1.0"
  31. }
  32. }
  33. },
  34. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  35. "dependencies": {
  36. "AutoMapper": "13.0.1",
  37. "Microsoft.Extensions.Options": "8.0.0"
  38. },
  39. "runtime": {
  40. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
  41. "assemblyVersion": "12.0.0.0",
  42. "fileVersion": "12.0.1.0"
  43. }
  44. }
  45. },
  46. "Azure.Core/1.25.0": {
  47. "dependencies": {
  48. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  49. "System.Diagnostics.DiagnosticSource": "6.0.0",
  50. "System.Memory.Data": "1.0.2",
  51. "System.Numerics.Vectors": "4.5.0",
  52. "System.Text.Encodings.Web": "8.0.0",
  53. "System.Text.Json": "8.0.0",
  54. "System.Threading.Tasks.Extensions": "4.5.4"
  55. },
  56. "runtime": {
  57. "lib/net5.0/Azure.Core.dll": {
  58. "assemblyVersion": "1.25.0.0",
  59. "fileVersion": "1.2500.22.33004"
  60. }
  61. }
  62. },
  63. "Azure.Identity/1.7.0": {
  64. "dependencies": {
  65. "Azure.Core": "1.25.0",
  66. "Microsoft.Identity.Client": "4.47.2",
  67. "Microsoft.Identity.Client.Extensions.Msal": "2.19.3",
  68. "System.Memory": "4.5.4",
  69. "System.Security.Cryptography.ProtectedData": "6.0.0",
  70. "System.Text.Json": "8.0.0",
  71. "System.Threading.Tasks.Extensions": "4.5.4"
  72. },
  73. "runtime": {
  74. "lib/netstandard2.0/Azure.Identity.dll": {
  75. "assemblyVersion": "1.7.0.0",
  76. "fileVersion": "1.700.22.46903"
  77. }
  78. }
  79. },
  80. "FluentValidation/11.9.1": {
  81. "runtime": {
  82. "lib/net8.0/FluentValidation.dll": {
  83. "assemblyVersion": "11.0.0.0",
  84. "fileVersion": "11.9.1.0"
  85. }
  86. }
  87. },
  88. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  89. "dependencies": {
  90. "FluentValidation": "11.9.1",
  91. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  92. },
  93. "runtime": {
  94. "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {
  95. "assemblyVersion": "11.0.0.0",
  96. "fileVersion": "11.9.1.0"
  97. }
  98. }
  99. },
  100. "Humanizer.Core/2.14.1": {
  101. "runtime": {
  102. "lib/net6.0/Humanizer.dll": {
  103. "assemblyVersion": "2.14.0.0",
  104. "fileVersion": "2.14.1.48190"
  105. }
  106. }
  107. },
  108. "MicroElements.OpenApi.FluentValidation/6.0.0": {
  109. "dependencies": {
  110. "FluentValidation": "11.9.1",
  111. "Microsoft.AspNetCore.Http.Abstractions": "2.1.0",
  112. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  113. "Microsoft.Extensions.Options": "8.0.0"
  114. },
  115. "runtime": {
  116. "lib/netstandard2.0/MicroElements.OpenApi.FluentValidation.dll": {
  117. "assemblyVersion": "6.0.0.0",
  118. "fileVersion": "6.0.0.0"
  119. }
  120. }
  121. },
  122. "MicroElements.Swashbuckle.FluentValidation/6.0.0": {
  123. "dependencies": {
  124. "FluentValidation": "11.9.1",
  125. "MicroElements.OpenApi.FluentValidation": "6.0.0",
  126. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
  127. },
  128. "runtime": {
  129. "lib/netstandard2.0/MicroElements.Swashbuckle.FluentValidation.dll": {
  130. "assemblyVersion": "6.0.0.0",
  131. "fileVersion": "6.0.0.0"
  132. }
  133. }
  134. },
  135. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.4": {
  136. "dependencies": {
  137. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
  138. },
  139. "runtime": {
  140. "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  141. "assemblyVersion": "8.0.4.0",
  142. "fileVersion": "8.0.424.17014"
  143. }
  144. }
  145. },
  146. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {},
  147. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  148. "dependencies": {
  149. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  150. }
  151. },
  152. "Microsoft.AspNetCore.Http.Abstractions/2.1.0": {
  153. "dependencies": {
  154. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  155. "System.Text.Encodings.Web": "8.0.0"
  156. }
  157. },
  158. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  159. "dependencies": {
  160. "Microsoft.Extensions.Primitives": "8.0.0",
  161. "System.IO.Pipelines": "6.0.3"
  162. }
  163. },
  164. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  165. "dependencies": {
  166. "Microsoft.EntityFrameworkCore.Relational": "8.0.4",
  167. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  168. },
  169. "runtime": {
  170. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  171. "assemblyVersion": "8.0.0.0",
  172. "fileVersion": "8.0.23.53112"
  173. }
  174. }
  175. },
  176. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  177. "runtime": {
  178. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  179. "assemblyVersion": "6.0.0.0",
  180. "fileVersion": "6.0.21.52210"
  181. }
  182. }
  183. },
  184. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
  185. "Microsoft.CodeAnalysis.Common/4.5.0": {
  186. "dependencies": {
  187. "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
  188. "System.Collections.Immutable": "6.0.0",
  189. "System.Reflection.Metadata": "6.0.1",
  190. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  191. "System.Text.Encoding.CodePages": "6.0.0"
  192. },
  193. "runtime": {
  194. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  195. "assemblyVersion": "4.5.0.0",
  196. "fileVersion": "4.500.23.10905"
  197. }
  198. },
  199. "resources": {
  200. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  201. "locale": "cs"
  202. },
  203. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  204. "locale": "de"
  205. },
  206. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  207. "locale": "es"
  208. },
  209. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  210. "locale": "fr"
  211. },
  212. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  213. "locale": "it"
  214. },
  215. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  216. "locale": "ja"
  217. },
  218. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  219. "locale": "ko"
  220. },
  221. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  222. "locale": "pl"
  223. },
  224. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  225. "locale": "pt-BR"
  226. },
  227. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  228. "locale": "ru"
  229. },
  230. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  231. "locale": "tr"
  232. },
  233. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  234. "locale": "zh-Hans"
  235. },
  236. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  237. "locale": "zh-Hant"
  238. }
  239. }
  240. },
  241. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  242. "dependencies": {
  243. "Microsoft.CodeAnalysis.Common": "4.5.0"
  244. },
  245. "runtime": {
  246. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  247. "assemblyVersion": "4.5.0.0",
  248. "fileVersion": "4.500.23.10905"
  249. }
  250. },
  251. "resources": {
  252. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  253. "locale": "cs"
  254. },
  255. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  256. "locale": "de"
  257. },
  258. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  259. "locale": "es"
  260. },
  261. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  262. "locale": "fr"
  263. },
  264. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  265. "locale": "it"
  266. },
  267. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  268. "locale": "ja"
  269. },
  270. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  271. "locale": "ko"
  272. },
  273. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  274. "locale": "pl"
  275. },
  276. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  277. "locale": "pt-BR"
  278. },
  279. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  280. "locale": "ru"
  281. },
  282. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  283. "locale": "tr"
  284. },
  285. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  286. "locale": "zh-Hans"
  287. },
  288. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  289. "locale": "zh-Hant"
  290. }
  291. }
  292. },
  293. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  294. "dependencies": {
  295. "Humanizer.Core": "2.14.1",
  296. "Microsoft.CodeAnalysis.CSharp": "4.5.0",
  297. "Microsoft.CodeAnalysis.Common": "4.5.0",
  298. "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
  299. },
  300. "runtime": {
  301. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  302. "assemblyVersion": "4.5.0.0",
  303. "fileVersion": "4.500.23.10905"
  304. }
  305. },
  306. "resources": {
  307. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  308. "locale": "cs"
  309. },
  310. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  311. "locale": "de"
  312. },
  313. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  314. "locale": "es"
  315. },
  316. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  317. "locale": "fr"
  318. },
  319. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  320. "locale": "it"
  321. },
  322. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  323. "locale": "ja"
  324. },
  325. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  326. "locale": "ko"
  327. },
  328. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  329. "locale": "pl"
  330. },
  331. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  332. "locale": "pt-BR"
  333. },
  334. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  335. "locale": "ru"
  336. },
  337. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  338. "locale": "tr"
  339. },
  340. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  341. "locale": "zh-Hans"
  342. },
  343. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  344. "locale": "zh-Hant"
  345. }
  346. }
  347. },
  348. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  349. "dependencies": {
  350. "Humanizer.Core": "2.14.1",
  351. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  352. "Microsoft.CodeAnalysis.Common": "4.5.0",
  353. "System.Composition": "6.0.0",
  354. "System.IO.Pipelines": "6.0.3",
  355. "System.Threading.Channels": "6.0.0"
  356. },
  357. "runtime": {
  358. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  359. "assemblyVersion": "4.5.0.0",
  360. "fileVersion": "4.500.23.10905"
  361. }
  362. },
  363. "resources": {
  364. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  365. "locale": "cs"
  366. },
  367. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  368. "locale": "de"
  369. },
  370. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  371. "locale": "es"
  372. },
  373. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  374. "locale": "fr"
  375. },
  376. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  377. "locale": "it"
  378. },
  379. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  380. "locale": "ja"
  381. },
  382. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  383. "locale": "ko"
  384. },
  385. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  386. "locale": "pl"
  387. },
  388. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  389. "locale": "pt-BR"
  390. },
  391. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  392. "locale": "ru"
  393. },
  394. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  395. "locale": "tr"
  396. },
  397. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  398. "locale": "zh-Hans"
  399. },
  400. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  401. "locale": "zh-Hant"
  402. }
  403. }
  404. },
  405. "Microsoft.Data.SqlClient/5.1.1": {
  406. "dependencies": {
  407. "Azure.Identity": "1.7.0",
  408. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.0",
  409. "Microsoft.Identity.Client": "4.47.2",
  410. "Microsoft.IdentityModel.JsonWebTokens": "7.1.2",
  411. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2",
  412. "Microsoft.SqlServer.Server": "1.0.0",
  413. "System.Configuration.ConfigurationManager": "6.0.1",
  414. "System.Diagnostics.DiagnosticSource": "6.0.0",
  415. "System.Runtime.Caching": "6.0.0",
  416. "System.Security.Cryptography.Cng": "5.0.0",
  417. "System.Security.Principal.Windows": "5.0.0",
  418. "System.Text.Encoding.CodePages": "6.0.0",
  419. "System.Text.Encodings.Web": "8.0.0"
  420. },
  421. "runtime": {
  422. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  423. "assemblyVersion": "5.0.0.0",
  424. "fileVersion": "5.0.0.0"
  425. }
  426. },
  427. "runtimeTargets": {
  428. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  429. "rid": "unix",
  430. "assetType": "runtime",
  431. "assemblyVersion": "5.0.0.0",
  432. "fileVersion": "5.0.0.0"
  433. },
  434. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  435. "rid": "win",
  436. "assetType": "runtime",
  437. "assemblyVersion": "5.0.0.0",
  438. "fileVersion": "5.0.0.0"
  439. }
  440. }
  441. },
  442. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  443. "runtimeTargets": {
  444. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  445. "rid": "win-arm",
  446. "assetType": "native",
  447. "fileVersion": "5.1.0.0"
  448. },
  449. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  450. "rid": "win-arm64",
  451. "assetType": "native",
  452. "fileVersion": "5.1.0.0"
  453. },
  454. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  455. "rid": "win-x64",
  456. "assetType": "native",
  457. "fileVersion": "5.1.0.0"
  458. },
  459. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  460. "rid": "win-x86",
  461. "assetType": "native",
  462. "fileVersion": "5.1.0.0"
  463. }
  464. }
  465. },
  466. "Microsoft.EntityFrameworkCore/8.0.4": {
  467. "dependencies": {
  468. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.4",
  469. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.4",
  470. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  471. "Microsoft.Extensions.Logging": "8.0.0"
  472. },
  473. "runtime": {
  474. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  475. "assemblyVersion": "8.0.4.0",
  476. "fileVersion": "8.0.424.16902"
  477. }
  478. }
  479. },
  480. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  481. "runtime": {
  482. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  483. "assemblyVersion": "8.0.4.0",
  484. "fileVersion": "8.0.424.16902"
  485. }
  486. }
  487. },
  488. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {},
  489. "Microsoft.EntityFrameworkCore.Design/8.0.4": {
  490. "dependencies": {
  491. "Humanizer.Core": "2.14.1",
  492. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
  493. "Microsoft.EntityFrameworkCore.Relational": "8.0.4",
  494. "Microsoft.Extensions.DependencyModel": "8.0.0",
  495. "Mono.TextTemplating": "2.2.1"
  496. },
  497. "runtime": {
  498. "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
  499. "assemblyVersion": "8.0.4.0",
  500. "fileVersion": "8.0.424.16902"
  501. }
  502. }
  503. },
  504. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  505. "dependencies": {
  506. "Microsoft.EntityFrameworkCore": "8.0.4",
  507. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  508. },
  509. "runtime": {
  510. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  511. "assemblyVersion": "8.0.4.0",
  512. "fileVersion": "8.0.424.16902"
  513. }
  514. }
  515. },
  516. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  517. "dependencies": {
  518. "Microsoft.Data.SqlClient": "5.1.1",
  519. "Microsoft.EntityFrameworkCore.Relational": "8.0.4"
  520. },
  521. "runtime": {
  522. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  523. "assemblyVersion": "8.0.0.0",
  524. "fileVersion": "8.0.23.53103"
  525. }
  526. }
  527. },
  528. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
  529. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  530. "dependencies": {
  531. "Microsoft.Extensions.Primitives": "8.0.0"
  532. }
  533. },
  534. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  535. "dependencies": {
  536. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  537. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  538. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  539. "Microsoft.Extensions.Options": "8.0.0",
  540. "Microsoft.Extensions.Primitives": "8.0.0"
  541. }
  542. },
  543. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  544. "dependencies": {
  545. "Microsoft.Extensions.Primitives": "8.0.0"
  546. }
  547. },
  548. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  549. "dependencies": {
  550. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  551. }
  552. },
  553. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  554. "runtime": {
  555. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  556. "assemblyVersion": "8.0.0.0",
  557. "fileVersion": "8.0.324.11423"
  558. }
  559. }
  560. },
  561. "Microsoft.Extensions.DependencyModel/8.0.0": {
  562. "dependencies": {
  563. "System.Text.Encodings.Web": "8.0.0",
  564. "System.Text.Json": "8.0.0"
  565. },
  566. "runtime": {
  567. "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
  568. "assemblyVersion": "8.0.0.0",
  569. "fileVersion": "8.0.23.53103"
  570. }
  571. }
  572. },
  573. "Microsoft.Extensions.Identity.Core/8.0.0": {
  574. "dependencies": {
  575. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  576. "Microsoft.Extensions.Logging": "8.0.0",
  577. "Microsoft.Extensions.Options": "8.0.0"
  578. }
  579. },
  580. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  581. "dependencies": {
  582. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  583. "Microsoft.Extensions.Identity.Core": "8.0.0",
  584. "Microsoft.Extensions.Logging": "8.0.0"
  585. }
  586. },
  587. "Microsoft.Extensions.Logging/8.0.0": {
  588. "dependencies": {
  589. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  590. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  591. "Microsoft.Extensions.Options": "8.0.0"
  592. }
  593. },
  594. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  595. "dependencies": {
  596. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  597. }
  598. },
  599. "Microsoft.Extensions.Options/8.0.0": {
  600. "dependencies": {
  601. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  602. "Microsoft.Extensions.Primitives": "8.0.0"
  603. }
  604. },
  605. "Microsoft.Extensions.Primitives/8.0.0": {},
  606. "Microsoft.Identity.Client/4.47.2": {
  607. "dependencies": {
  608. "Microsoft.IdentityModel.Abstractions": "7.1.2"
  609. },
  610. "runtime": {
  611. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  612. "assemblyVersion": "4.47.2.0",
  613. "fileVersion": "4.47.2.0"
  614. }
  615. }
  616. },
  617. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  618. "dependencies": {
  619. "Microsoft.Identity.Client": "4.47.2",
  620. "System.Security.Cryptography.ProtectedData": "6.0.0"
  621. },
  622. "runtime": {
  623. "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": {
  624. "assemblyVersion": "2.19.3.0",
  625. "fileVersion": "2.19.3.0"
  626. }
  627. }
  628. },
  629. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  630. "runtime": {
  631. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
  632. "assemblyVersion": "7.1.2.0",
  633. "fileVersion": "7.1.2.41121"
  634. }
  635. }
  636. },
  637. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  638. "dependencies": {
  639. "Microsoft.IdentityModel.Tokens": "7.1.2"
  640. },
  641. "runtime": {
  642. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  643. "assemblyVersion": "7.1.2.0",
  644. "fileVersion": "7.1.2.41121"
  645. }
  646. }
  647. },
  648. "Microsoft.IdentityModel.Logging/7.1.2": {
  649. "dependencies": {
  650. "Microsoft.IdentityModel.Abstractions": "7.1.2"
  651. },
  652. "runtime": {
  653. "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
  654. "assemblyVersion": "7.1.2.0",
  655. "fileVersion": "7.1.2.41121"
  656. }
  657. }
  658. },
  659. "Microsoft.IdentityModel.Protocols/7.1.2": {
  660. "dependencies": {
  661. "Microsoft.IdentityModel.Logging": "7.1.2",
  662. "Microsoft.IdentityModel.Tokens": "7.1.2"
  663. },
  664. "runtime": {
  665. "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
  666. "assemblyVersion": "7.1.2.0",
  667. "fileVersion": "7.1.2.41121"
  668. }
  669. }
  670. },
  671. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  672. "dependencies": {
  673. "Microsoft.IdentityModel.Protocols": "7.1.2",
  674. "System.IdentityModel.Tokens.Jwt": "7.1.2"
  675. },
  676. "runtime": {
  677. "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  678. "assemblyVersion": "7.1.2.0",
  679. "fileVersion": "7.1.2.41121"
  680. }
  681. }
  682. },
  683. "Microsoft.IdentityModel.Tokens/7.1.2": {
  684. "dependencies": {
  685. "Microsoft.IdentityModel.Logging": "7.1.2"
  686. },
  687. "runtime": {
  688. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
  689. "assemblyVersion": "7.1.2.0",
  690. "fileVersion": "7.1.2.41121"
  691. }
  692. }
  693. },
  694. "Microsoft.OpenApi/1.3.1": {
  695. "runtime": {
  696. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  697. "assemblyVersion": "1.3.1.0",
  698. "fileVersion": "1.3.1.0"
  699. }
  700. }
  701. },
  702. "Microsoft.SqlServer.Server/1.0.0": {
  703. "runtime": {
  704. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  705. "assemblyVersion": "1.0.0.0",
  706. "fileVersion": "1.0.0.0"
  707. }
  708. }
  709. },
  710. "Microsoft.Win32.SystemEvents/6.0.0": {
  711. "runtime": {
  712. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  713. "assemblyVersion": "6.0.0.0",
  714. "fileVersion": "6.0.21.52210"
  715. }
  716. },
  717. "runtimeTargets": {
  718. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  719. "rid": "win",
  720. "assetType": "runtime",
  721. "assemblyVersion": "6.0.0.0",
  722. "fileVersion": "6.0.21.52210"
  723. }
  724. }
  725. },
  726. "Mono.TextTemplating/2.2.1": {
  727. "dependencies": {
  728. "System.CodeDom": "4.4.0"
  729. },
  730. "runtime": {
  731. "lib/netstandard2.0/Mono.TextTemplating.dll": {
  732. "assemblyVersion": "2.2.0.0",
  733. "fileVersion": "2.2.1.1"
  734. }
  735. }
  736. },
  737. "Newtonsoft.Json/13.0.3": {
  738. "runtime": {
  739. "lib/net6.0/Newtonsoft.Json.dll": {
  740. "assemblyVersion": "13.0.0.0",
  741. "fileVersion": "13.0.3.27908"
  742. }
  743. }
  744. },
  745. "NReco.PdfGenerator/1.2.1": {
  746. "runtime": {
  747. "lib/netstandard2.0/NReco.PdfGenerator.dll": {
  748. "assemblyVersion": "1.2.1.0",
  749. "fileVersion": "1.2.1.0"
  750. }
  751. }
  752. },
  753. "Scrutor/3.3.0": {
  754. "dependencies": {
  755. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1",
  756. "Microsoft.Extensions.DependencyModel": "8.0.0"
  757. },
  758. "runtime": {
  759. "lib/netcoreapp3.1/Scrutor.dll": {
  760. "assemblyVersion": "3.0.2.0",
  761. "fileVersion": "3.0.2.0"
  762. }
  763. }
  764. },
  765. "Swashbuckle.AspNetCore/6.5.0": {
  766. "dependencies": {
  767. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  768. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  769. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  770. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  771. }
  772. },
  773. "Swashbuckle.AspNetCore.Annotations/6.5.0": {
  774. "dependencies": {
  775. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
  776. },
  777. "runtime": {
  778. "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll": {
  779. "assemblyVersion": "6.5.0.0",
  780. "fileVersion": "6.5.0.0"
  781. }
  782. }
  783. },
  784. "Swashbuckle.AspNetCore.Filters/8.0.2": {
  785. "dependencies": {
  786. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  787. "Microsoft.OpenApi": "1.3.1",
  788. "Scrutor": "3.3.0",
  789. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.2",
  790. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
  791. },
  792. "runtime": {
  793. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll": {
  794. "assemblyVersion": "8.0.2.0",
  795. "fileVersion": "8.0.2.0"
  796. }
  797. }
  798. },
  799. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.2": {
  800. "runtime": {
  801. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {
  802. "assemblyVersion": "8.0.2.0",
  803. "fileVersion": "8.0.2.0"
  804. }
  805. }
  806. },
  807. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  808. "dependencies": {
  809. "Microsoft.OpenApi": "1.3.1"
  810. },
  811. "runtime": {
  812. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  813. "assemblyVersion": "6.5.0.0",
  814. "fileVersion": "6.5.0.0"
  815. }
  816. }
  817. },
  818. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  819. "dependencies": {
  820. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  821. },
  822. "runtime": {
  823. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  824. "assemblyVersion": "6.5.0.0",
  825. "fileVersion": "6.5.0.0"
  826. }
  827. }
  828. },
  829. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  830. "runtime": {
  831. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  832. "assemblyVersion": "6.5.0.0",
  833. "fileVersion": "6.5.0.0"
  834. }
  835. }
  836. },
  837. "System.CodeDom/4.4.0": {
  838. "runtime": {
  839. "lib/netstandard2.0/System.CodeDom.dll": {
  840. "assemblyVersion": "4.0.0.0",
  841. "fileVersion": "4.6.25519.3"
  842. }
  843. }
  844. },
  845. "System.Collections.Immutable/6.0.0": {
  846. "dependencies": {
  847. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  848. }
  849. },
  850. "System.Composition/6.0.0": {
  851. "dependencies": {
  852. "System.Composition.AttributedModel": "6.0.0",
  853. "System.Composition.Convention": "6.0.0",
  854. "System.Composition.Hosting": "6.0.0",
  855. "System.Composition.Runtime": "6.0.0",
  856. "System.Composition.TypedParts": "6.0.0"
  857. }
  858. },
  859. "System.Composition.AttributedModel/6.0.0": {
  860. "runtime": {
  861. "lib/net6.0/System.Composition.AttributedModel.dll": {
  862. "assemblyVersion": "6.0.0.0",
  863. "fileVersion": "6.0.21.52210"
  864. }
  865. }
  866. },
  867. "System.Composition.Convention/6.0.0": {
  868. "dependencies": {
  869. "System.Composition.AttributedModel": "6.0.0"
  870. },
  871. "runtime": {
  872. "lib/net6.0/System.Composition.Convention.dll": {
  873. "assemblyVersion": "6.0.0.0",
  874. "fileVersion": "6.0.21.52210"
  875. }
  876. }
  877. },
  878. "System.Composition.Hosting/6.0.0": {
  879. "dependencies": {
  880. "System.Composition.Runtime": "6.0.0"
  881. },
  882. "runtime": {
  883. "lib/net6.0/System.Composition.Hosting.dll": {
  884. "assemblyVersion": "6.0.0.0",
  885. "fileVersion": "6.0.21.52210"
  886. }
  887. }
  888. },
  889. "System.Composition.Runtime/6.0.0": {
  890. "runtime": {
  891. "lib/net6.0/System.Composition.Runtime.dll": {
  892. "assemblyVersion": "6.0.0.0",
  893. "fileVersion": "6.0.21.52210"
  894. }
  895. }
  896. },
  897. "System.Composition.TypedParts/6.0.0": {
  898. "dependencies": {
  899. "System.Composition.AttributedModel": "6.0.0",
  900. "System.Composition.Hosting": "6.0.0",
  901. "System.Composition.Runtime": "6.0.0"
  902. },
  903. "runtime": {
  904. "lib/net6.0/System.Composition.TypedParts.dll": {
  905. "assemblyVersion": "6.0.0.0",
  906. "fileVersion": "6.0.21.52210"
  907. }
  908. }
  909. },
  910. "System.Configuration.ConfigurationManager/6.0.1": {
  911. "dependencies": {
  912. "System.Security.Cryptography.ProtectedData": "6.0.0",
  913. "System.Security.Permissions": "6.0.0"
  914. },
  915. "runtime": {
  916. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  917. "assemblyVersion": "6.0.0.0",
  918. "fileVersion": "6.0.922.41905"
  919. }
  920. }
  921. },
  922. "System.Diagnostics.DiagnosticSource/6.0.0": {
  923. "dependencies": {
  924. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  925. }
  926. },
  927. "System.Drawing.Common/6.0.0": {
  928. "dependencies": {
  929. "Microsoft.Win32.SystemEvents": "6.0.0"
  930. },
  931. "runtime": {
  932. "lib/net6.0/System.Drawing.Common.dll": {
  933. "assemblyVersion": "6.0.0.0",
  934. "fileVersion": "6.0.21.52210"
  935. }
  936. },
  937. "runtimeTargets": {
  938. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  939. "rid": "unix",
  940. "assetType": "runtime",
  941. "assemblyVersion": "6.0.0.0",
  942. "fileVersion": "6.0.21.52210"
  943. },
  944. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  945. "rid": "win",
  946. "assetType": "runtime",
  947. "assemblyVersion": "6.0.0.0",
  948. "fileVersion": "6.0.21.52210"
  949. }
  950. }
  951. },
  952. "System.Formats.Asn1/5.0.0": {},
  953. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  954. "dependencies": {
  955. "Microsoft.IdentityModel.JsonWebTokens": "7.1.2",
  956. "Microsoft.IdentityModel.Tokens": "7.1.2"
  957. },
  958. "runtime": {
  959. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
  960. "assemblyVersion": "7.1.2.0",
  961. "fileVersion": "7.1.2.41121"
  962. }
  963. }
  964. },
  965. "System.IO.Pipelines/6.0.3": {},
  966. "System.Memory/4.5.4": {},
  967. "System.Memory.Data/1.0.2": {
  968. "dependencies": {
  969. "System.Text.Encodings.Web": "8.0.0",
  970. "System.Text.Json": "8.0.0"
  971. },
  972. "runtime": {
  973. "lib/netstandard2.0/System.Memory.Data.dll": {
  974. "assemblyVersion": "1.0.2.0",
  975. "fileVersion": "1.0.221.20802"
  976. }
  977. }
  978. },
  979. "System.Numerics.Vectors/4.5.0": {},
  980. "System.Reflection.Metadata/6.0.1": {
  981. "dependencies": {
  982. "System.Collections.Immutable": "6.0.0"
  983. }
  984. },
  985. "System.Runtime.Caching/6.0.0": {
  986. "dependencies": {
  987. "System.Configuration.ConfigurationManager": "6.0.1"
  988. },
  989. "runtime": {
  990. "lib/net6.0/System.Runtime.Caching.dll": {
  991. "assemblyVersion": "4.0.0.0",
  992. "fileVersion": "6.0.21.52210"
  993. }
  994. },
  995. "runtimeTargets": {
  996. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  997. "rid": "win",
  998. "assetType": "runtime",
  999. "assemblyVersion": "4.0.0.0",
  1000. "fileVersion": "6.0.21.52210"
  1001. }
  1002. }
  1003. },
  1004. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  1005. "System.Security.AccessControl/6.0.0": {},
  1006. "System.Security.Cryptography.Cng/5.0.0": {
  1007. "dependencies": {
  1008. "System.Formats.Asn1": "5.0.0"
  1009. }
  1010. },
  1011. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1012. "runtime": {
  1013. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1014. "assemblyVersion": "6.0.0.0",
  1015. "fileVersion": "6.0.21.52210"
  1016. }
  1017. },
  1018. "runtimeTargets": {
  1019. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  1020. "rid": "win",
  1021. "assetType": "runtime",
  1022. "assemblyVersion": "6.0.0.0",
  1023. "fileVersion": "6.0.21.52210"
  1024. }
  1025. }
  1026. },
  1027. "System.Security.Permissions/6.0.0": {
  1028. "dependencies": {
  1029. "System.Security.AccessControl": "6.0.0",
  1030. "System.Windows.Extensions": "6.0.0"
  1031. },
  1032. "runtime": {
  1033. "lib/net6.0/System.Security.Permissions.dll": {
  1034. "assemblyVersion": "6.0.0.0",
  1035. "fileVersion": "6.0.21.52210"
  1036. }
  1037. }
  1038. },
  1039. "System.Security.Principal.Windows/5.0.0": {},
  1040. "System.Text.Encoding.CodePages/6.0.0": {
  1041. "dependencies": {
  1042. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1043. }
  1044. },
  1045. "System.Text.Encodings.Web/8.0.0": {},
  1046. "System.Text.Json/8.0.0": {
  1047. "dependencies": {
  1048. "System.Text.Encodings.Web": "8.0.0"
  1049. }
  1050. },
  1051. "System.Threading.Channels/6.0.0": {},
  1052. "System.Threading.Tasks.Extensions/4.5.4": {},
  1053. "System.Windows.Extensions/6.0.0": {
  1054. "dependencies": {
  1055. "System.Drawing.Common": "6.0.0"
  1056. },
  1057. "runtime": {
  1058. "lib/net6.0/System.Windows.Extensions.dll": {
  1059. "assemblyVersion": "6.0.0.0",
  1060. "fileVersion": "6.0.21.52210"
  1061. }
  1062. },
  1063. "runtimeTargets": {
  1064. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1065. "rid": "win",
  1066. "assetType": "runtime",
  1067. "assemblyVersion": "6.0.0.0",
  1068. "fileVersion": "6.0.21.52210"
  1069. }
  1070. }
  1071. },
  1072. "AipGateway.API.Application/1.0.0": {
  1073. "dependencies": {
  1074. "AipGateway.API.Domain": "1.0.0",
  1075. "AipGateway.API.Infrastructure": "1.0.0",
  1076. "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.4",
  1077. "Microsoft.EntityFrameworkCore": "8.0.4",
  1078. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
  1079. },
  1080. "runtime": {
  1081. "AipGateway.API.Application.dll": {}
  1082. }
  1083. },
  1084. "AipGateway.API.Domain/1.0.0": {
  1085. "dependencies": {
  1086. "AutoMapper": "13.0.1",
  1087. "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
  1088. "FluentValidation": "11.9.1",
  1089. "FluentValidation.DependencyInjectionExtensions": "11.9.1",
  1090. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  1091. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "8.0.0",
  1092. "Microsoft.EntityFrameworkCore": "8.0.4",
  1093. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.0",
  1094. "Microsoft.Extensions.Identity.Stores": "8.0.0",
  1095. "NReco.PdfGenerator": "1.2.1",
  1096. "Newtonsoft.Json": "13.0.3"
  1097. },
  1098. "runtime": {
  1099. "AipGateway.API.Domain.dll": {}
  1100. }
  1101. },
  1102. "AipGateway.API.Infrastructure/1.0.0": {
  1103. "dependencies": {
  1104. "AipGateway.API.Domain": "1.0.0",
  1105. "Microsoft.EntityFrameworkCore": "8.0.4"
  1106. },
  1107. "runtime": {
  1108. "AipGateway.API.Infrastructure.dll": {}
  1109. }
  1110. }
  1111. }
  1112. },
  1113. "libraries": {
  1114. "AipGateway.API/1.0.0": {
  1115. "type": "project",
  1116. "serviceable": false,
  1117. "sha512": ""
  1118. },
  1119. "AutoMapper/13.0.1": {
  1120. "type": "package",
  1121. "serviceable": true,
  1122. "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
  1123. "path": "automapper/13.0.1",
  1124. "hashPath": "automapper.13.0.1.nupkg.sha512"
  1125. },
  1126. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  1127. "type": "package",
  1128. "serviceable": true,
  1129. "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  1130. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  1131. "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512"
  1132. },
  1133. "Azure.Core/1.25.0": {
  1134. "type": "package",
  1135. "serviceable": true,
  1136. "sha512": "sha512-X8Dd4sAggS84KScWIjEbFAdt2U1KDolQopTPoHVubG2y3CM54f9l6asVrP5Uy384NWXjsspPYaJgz5xHc+KvTA==",
  1137. "path": "azure.core/1.25.0",
  1138. "hashPath": "azure.core.1.25.0.nupkg.sha512"
  1139. },
  1140. "Azure.Identity/1.7.0": {
  1141. "type": "package",
  1142. "serviceable": true,
  1143. "sha512": "sha512-eHEiCO/8+MfNc9nH5dVew/+FvxdaGrkRL4OMNwIz0W79+wtJyEoeRlXJ3SrXhoy9XR58geBYKmzMR83VO7bcAw==",
  1144. "path": "azure.identity/1.7.0",
  1145. "hashPath": "azure.identity.1.7.0.nupkg.sha512"
  1146. },
  1147. "FluentValidation/11.9.1": {
  1148. "type": "package",
  1149. "serviceable": true,
  1150. "sha512": "sha512-C+PqISSMdlOZZJx0Hx25atW32tv4vbpsaiQB+PLjK+ZGLzOFuHl1fUJ3Lny77mIZ31ZtYtNG0JgUjxa3wwLsWg==",
  1151. "path": "fluentvalidation/11.9.1",
  1152. "hashPath": "fluentvalidation.11.9.1.nupkg.sha512"
  1153. },
  1154. "FluentValidation.DependencyInjectionExtensions/11.9.1": {
  1155. "type": "package",
  1156. "serviceable": true,
  1157. "sha512": "sha512-3jJbFcCWhiXhrCKFPjKihzccmosv+CleYewd2zEYS4aaUHx9zQSgOvkYbWUGTbDwJ5j2nDWE0Pr1EQ2xY4pryg==",
  1158. "path": "fluentvalidation.dependencyinjectionextensions/11.9.1",
  1159. "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.1.nupkg.sha512"
  1160. },
  1161. "Humanizer.Core/2.14.1": {
  1162. "type": "package",
  1163. "serviceable": true,
  1164. "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
  1165. "path": "humanizer.core/2.14.1",
  1166. "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
  1167. },
  1168. "MicroElements.OpenApi.FluentValidation/6.0.0": {
  1169. "type": "package",
  1170. "serviceable": true,
  1171. "sha512": "sha512-6XD28ux6GP7C+rspfKhV7aG4ZMeA138uXszbk+EnzXHMv2Gj3fxsU/gKvHlyixT+GBAErbzZO4bbjMi3XXo/Ww==",
  1172. "path": "microelements.openapi.fluentvalidation/6.0.0",
  1173. "hashPath": "microelements.openapi.fluentvalidation.6.0.0.nupkg.sha512"
  1174. },
  1175. "MicroElements.Swashbuckle.FluentValidation/6.0.0": {
  1176. "type": "package",
  1177. "serviceable": true,
  1178. "sha512": "sha512-uCQMS4ww1yjf6KThudk6ncErudMPqxHMeK8oIYSfGxhumedm7uu0fUjtvA+TnBeZ/HXvmcR7rrc5sI487U9oBA==",
  1179. "path": "microelements.swashbuckle.fluentvalidation/6.0.0",
  1180. "hashPath": "microelements.swashbuckle.fluentvalidation.6.0.0.nupkg.sha512"
  1181. },
  1182. "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.4": {
  1183. "type": "package",
  1184. "serviceable": true,
  1185. "sha512": "sha512-tHnHRBgQyiVNZJ8PksNinLdGOsE8+tFFv3E9QEtmwO+iyTHRvg4bJ4X0XZG1u9KxXMTJuAdeIWKWYr2rTLEHqQ==",
  1186. "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.4",
  1187. "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.4.nupkg.sha512"
  1188. },
  1189. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  1190. "type": "package",
  1191. "serviceable": true,
  1192. "sha512": "sha512-buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  1193. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  1194. "hashPath": "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512"
  1195. },
  1196. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  1197. "type": "package",
  1198. "serviceable": true,
  1199. "sha512": "sha512-65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  1200. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  1201. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512"
  1202. },
  1203. "Microsoft.AspNetCore.Http.Abstractions/2.1.0": {
  1204. "type": "package",
  1205. "serviceable": true,
  1206. "sha512": "sha512-vbFDyKsSYBnxl3+RABtN79b0vsTcG66fDY8vD6Nqvu9uLtSej70Q5NcbGlnN6bJpZci5orSdgFTHMhBywivDPg==",
  1207. "path": "microsoft.aspnetcore.http.abstractions/2.1.0",
  1208. "hashPath": "microsoft.aspnetcore.http.abstractions.2.1.0.nupkg.sha512"
  1209. },
  1210. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  1211. "type": "package",
  1212. "serviceable": true,
  1213. "sha512": "sha512-3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  1214. "path": "microsoft.aspnetcore.http.features/5.0.17",
  1215. "hashPath": "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512"
  1216. },
  1217. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  1218. "type": "package",
  1219. "serviceable": true,
  1220. "sha512": "sha512-ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  1221. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  1222. "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512"
  1223. },
  1224. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  1225. "type": "package",
  1226. "serviceable": true,
  1227. "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  1228. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  1229. "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
  1230. },
  1231. "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
  1232. "type": "package",
  1233. "serviceable": true,
  1234. "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
  1235. "path": "microsoft.codeanalysis.analyzers/3.3.3",
  1236. "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
  1237. },
  1238. "Microsoft.CodeAnalysis.Common/4.5.0": {
  1239. "type": "package",
  1240. "serviceable": true,
  1241. "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
  1242. "path": "microsoft.codeanalysis.common/4.5.0",
  1243. "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
  1244. },
  1245. "Microsoft.CodeAnalysis.CSharp/4.5.0": {
  1246. "type": "package",
  1247. "serviceable": true,
  1248. "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
  1249. "path": "microsoft.codeanalysis.csharp/4.5.0",
  1250. "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
  1251. },
  1252. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
  1253. "type": "package",
  1254. "serviceable": true,
  1255. "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
  1256. "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
  1257. "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
  1258. },
  1259. "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
  1260. "type": "package",
  1261. "serviceable": true,
  1262. "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
  1263. "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
  1264. "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
  1265. },
  1266. "Microsoft.Data.SqlClient/5.1.1": {
  1267. "type": "package",
  1268. "serviceable": true,
  1269. "sha512": "sha512-MW5E9HFvCaV069o8b6YpuRDPBux8s96qDnOJ+4N9QNUCs7c5W3KxwQ+ftpAjbMUlImL+c9WR+l+f5hzjkqhu2g==",
  1270. "path": "microsoft.data.sqlclient/5.1.1",
  1271. "hashPath": "microsoft.data.sqlclient.5.1.1.nupkg.sha512"
  1272. },
  1273. "Microsoft.Data.SqlClient.SNI.runtime/5.1.0": {
  1274. "type": "package",
  1275. "serviceable": true,
  1276. "sha512": "sha512-jVsElisM5sfBzaaV9kdq2NXZLwIbytetnsOIlJ0cQGgQP4zFNBmkfHBnpwtmKrtBJBEV9+9PVQPVrcCVhDgcIg==",
  1277. "path": "microsoft.data.sqlclient.sni.runtime/5.1.0",
  1278. "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.0.nupkg.sha512"
  1279. },
  1280. "Microsoft.EntityFrameworkCore/8.0.4": {
  1281. "type": "package",
  1282. "serviceable": true,
  1283. "sha512": "sha512-/kyu9pXuxQvhg8RO/oN5Q5Og7cDIVvZtrt1z48rX7Yido+zEGkUkp3/Bjd9u45N2uuPPF8mn2pKDlAewCvv3/Q==",
  1284. "path": "microsoft.entityframeworkcore/8.0.4",
  1285. "hashPath": "microsoft.entityframeworkcore.8.0.4.nupkg.sha512"
  1286. },
  1287. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  1288. "type": "package",
  1289. "serviceable": true,
  1290. "sha512": "sha512-S50pjtPNOvRktacaO6UAhvGCPMT56wxqEq8fQfcjaSUySPGba6mKWo6ackw6DdeAR1cA6U+U0uj27warA2KtJA==",
  1291. "path": "microsoft.entityframeworkcore.abstractions/8.0.4",
  1292. "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.4.nupkg.sha512"
  1293. },
  1294. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  1295. "type": "package",
  1296. "serviceable": true,
  1297. "sha512": "sha512-P8hfMZECdbgle4Us8HGRUKAjqVwgbtr5JqtCxqEoiVORrNQAmcpu3g1NKwTAoUsO9Z0QRgExtYoAmdggR/DkMQ==",
  1298. "path": "microsoft.entityframeworkcore.analyzers/8.0.4",
  1299. "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.4.nupkg.sha512"
  1300. },
  1301. "Microsoft.EntityFrameworkCore.Design/8.0.4": {
  1302. "type": "package",
  1303. "serviceable": true,
  1304. "sha512": "sha512-QD5/h3+h4N7GlUaA4bzaYFW9CoeB7ne2KMiDIENIT0GPx+E6up/v9fDA36FAS3NIq9zeKUAQgN8aj6IwE7tMGw==",
  1305. "path": "microsoft.entityframeworkcore.design/8.0.4",
  1306. "hashPath": "microsoft.entityframeworkcore.design.8.0.4.nupkg.sha512"
  1307. },
  1308. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  1309. "type": "package",
  1310. "serviceable": true,
  1311. "sha512": "sha512-aWLT6e9a8oMzXgF0YQpYYa3mDeU+yb2UQSQ+RrIgyGgSpzPfSKgpA7v2kOVDuZr2AQ6NNAlWPaBG7wZuKQI96w==",
  1312. "path": "microsoft.entityframeworkcore.relational/8.0.4",
  1313. "hashPath": "microsoft.entityframeworkcore.relational.8.0.4.nupkg.sha512"
  1314. },
  1315. "Microsoft.EntityFrameworkCore.SqlServer/8.0.0": {
  1316. "type": "package",
  1317. "serviceable": true,
  1318. "sha512": "sha512-GeOmafQn64HyQtYcI/Omv/D/YVHd1zEkWbP3zNQu4oC+usE9K0qOp0R8KgWWFEf8BU4tXuYbok40W0SjfbaK/A==",
  1319. "path": "microsoft.entityframeworkcore.sqlserver/8.0.0",
  1320. "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.0.nupkg.sha512"
  1321. },
  1322. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  1323. "type": "package",
  1324. "serviceable": true,
  1325. "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  1326. "path": "microsoft.extensions.apidescription.server/6.0.5",
  1327. "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
  1328. },
  1329. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1330. "type": "package",
  1331. "serviceable": true,
  1332. "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  1333. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  1334. "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
  1335. },
  1336. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  1337. "type": "package",
  1338. "serviceable": true,
  1339. "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  1340. "path": "microsoft.extensions.caching.memory/8.0.0",
  1341. "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512"
  1342. },
  1343. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  1344. "type": "package",
  1345. "serviceable": true,
  1346. "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  1347. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  1348. "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
  1349. },
  1350. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  1351. "type": "package",
  1352. "serviceable": true,
  1353. "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  1354. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  1355. "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
  1356. },
  1357. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
  1358. "type": "package",
  1359. "serviceable": true,
  1360. "sha512": "sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==",
  1361. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1",
  1362. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512"
  1363. },
  1364. "Microsoft.Extensions.DependencyModel/8.0.0": {
  1365. "type": "package",
  1366. "serviceable": true,
  1367. "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
  1368. "path": "microsoft.extensions.dependencymodel/8.0.0",
  1369. "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512"
  1370. },
  1371. "Microsoft.Extensions.Identity.Core/8.0.0": {
  1372. "type": "package",
  1373. "serviceable": true,
  1374. "sha512": "sha512-hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  1375. "path": "microsoft.extensions.identity.core/8.0.0",
  1376. "hashPath": "microsoft.extensions.identity.core.8.0.0.nupkg.sha512"
  1377. },
  1378. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  1379. "type": "package",
  1380. "serviceable": true,
  1381. "sha512": "sha512-DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  1382. "path": "microsoft.extensions.identity.stores/8.0.0",
  1383. "hashPath": "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512"
  1384. },
  1385. "Microsoft.Extensions.Logging/8.0.0": {
  1386. "type": "package",
  1387. "serviceable": true,
  1388. "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  1389. "path": "microsoft.extensions.logging/8.0.0",
  1390. "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
  1391. },
  1392. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  1396. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  1397. "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
  1398. },
  1399. "Microsoft.Extensions.Options/8.0.0": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  1403. "path": "microsoft.extensions.options/8.0.0",
  1404. "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
  1405. },
  1406. "Microsoft.Extensions.Primitives/8.0.0": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  1410. "path": "microsoft.extensions.primitives/8.0.0",
  1411. "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
  1412. },
  1413. "Microsoft.Identity.Client/4.47.2": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-SPgesZRbXoDxg8Vv7k5Ou0ee7uupVw0E8ZCc4GKw25HANRLz1d5OSr0fvTVQRnEswo5Obk8qD4LOapYB+n5kzQ==",
  1417. "path": "microsoft.identity.client/4.47.2",
  1418. "hashPath": "microsoft.identity.client.4.47.2.nupkg.sha512"
  1419. },
  1420. "Microsoft.Identity.Client.Extensions.Msal/2.19.3": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==",
  1424. "path": "microsoft.identity.client.extensions.msal/2.19.3",
  1425. "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512"
  1426. },
  1427. "Microsoft.IdentityModel.Abstractions/7.1.2": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==",
  1431. "path": "microsoft.identitymodel.abstractions/7.1.2",
  1432. "hashPath": "microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512"
  1433. },
  1434. "Microsoft.IdentityModel.JsonWebTokens/7.1.2": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==",
  1438. "path": "microsoft.identitymodel.jsonwebtokens/7.1.2",
  1439. "hashPath": "microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512"
  1440. },
  1441. "Microsoft.IdentityModel.Logging/7.1.2": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==",
  1445. "path": "microsoft.identitymodel.logging/7.1.2",
  1446. "hashPath": "microsoft.identitymodel.logging.7.1.2.nupkg.sha512"
  1447. },
  1448. "Microsoft.IdentityModel.Protocols/7.1.2": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
  1452. "path": "microsoft.identitymodel.protocols/7.1.2",
  1453. "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512"
  1454. },
  1455. "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
  1459. "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
  1460. "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512"
  1461. },
  1462. "Microsoft.IdentityModel.Tokens/7.1.2": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==",
  1466. "path": "microsoft.identitymodel.tokens/7.1.2",
  1467. "hashPath": "microsoft.identitymodel.tokens.7.1.2.nupkg.sha512"
  1468. },
  1469. "Microsoft.OpenApi/1.3.1": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  1473. "path": "microsoft.openapi/1.3.1",
  1474. "hashPath": "microsoft.openapi.1.3.1.nupkg.sha512"
  1475. },
  1476. "Microsoft.SqlServer.Server/1.0.0": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  1480. "path": "microsoft.sqlserver.server/1.0.0",
  1481. "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
  1482. },
  1483. "Microsoft.Win32.SystemEvents/6.0.0": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1487. "path": "microsoft.win32.systemevents/6.0.0",
  1488. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1489. },
  1490. "Mono.TextTemplating/2.2.1": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
  1494. "path": "mono.texttemplating/2.2.1",
  1495. "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
  1496. },
  1497. "Newtonsoft.Json/13.0.3": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1501. "path": "newtonsoft.json/13.0.3",
  1502. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1503. },
  1504. "NReco.PdfGenerator/1.2.1": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-YONMIaSBJO/0FKcXMyO1KZWc83IqfrbBKw5fcRxrwgxzv5r89rh/Z6r7ukuJmx+ra3m6jz6gmaEYXFWV3dKTmg==",
  1508. "path": "nreco.pdfgenerator/1.2.1",
  1509. "hashPath": "nreco.pdfgenerator.1.2.1.nupkg.sha512"
  1510. },
  1511. "Scrutor/3.3.0": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  1515. "path": "scrutor/3.3.0",
  1516. "hashPath": "scrutor.3.3.0.nupkg.sha512"
  1517. },
  1518. "Swashbuckle.AspNetCore/6.5.0": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  1522. "path": "swashbuckle.aspnetcore/6.5.0",
  1523. "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512"
  1524. },
  1525. "Swashbuckle.AspNetCore.Annotations/6.5.0": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-EcHd1z2pEdnpaBMTI9qjVxk6mFVGVMZ1n0ySC3fjrkXCQQ8O9fMdt9TxPJRKyjiTiTjvO9700jKjmyl+hPBinQ==",
  1529. "path": "swashbuckle.aspnetcore.annotations/6.5.0",
  1530. "hashPath": "swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512"
  1531. },
  1532. "Swashbuckle.AspNetCore.Filters/8.0.2": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-S4pR+265NwY9saAhK+3Jn2oL2Wfy0qvy9871b0KiEPW/iLPRgg2HrkrdMwC1wpjNkRXWGDFRRj+LkUD4lyuAaQ==",
  1536. "path": "swashbuckle.aspnetcore.filters/8.0.2",
  1537. "hashPath": "swashbuckle.aspnetcore.filters.8.0.2.nupkg.sha512"
  1538. },
  1539. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.2": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-RgQ1RbxmofrkBSrLkA/34DWwzz4rKHRwC4vHOvevru2CNqymUPn3kRhbIX29g4yvj2sCff1glf19djnyM9kuUQ==",
  1543. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.2",
  1544. "hashPath": "swashbuckle.aspnetcore.filters.abstractions.8.0.2.nupkg.sha512"
  1545. },
  1546. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  1550. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  1551. "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512"
  1552. },
  1553. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  1557. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  1558. "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512"
  1559. },
  1560. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  1564. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  1565. "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
  1566. },
  1567. "System.CodeDom/4.4.0": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
  1571. "path": "system.codedom/4.4.0",
  1572. "hashPath": "system.codedom.4.4.0.nupkg.sha512"
  1573. },
  1574. "System.Collections.Immutable/6.0.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  1578. "path": "system.collections.immutable/6.0.0",
  1579. "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
  1580. },
  1581. "System.Composition/6.0.0": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
  1585. "path": "system.composition/6.0.0",
  1586. "hashPath": "system.composition.6.0.0.nupkg.sha512"
  1587. },
  1588. "System.Composition.AttributedModel/6.0.0": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
  1592. "path": "system.composition.attributedmodel/6.0.0",
  1593. "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
  1594. },
  1595. "System.Composition.Convention/6.0.0": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
  1599. "path": "system.composition.convention/6.0.0",
  1600. "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
  1601. },
  1602. "System.Composition.Hosting/6.0.0": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
  1606. "path": "system.composition.hosting/6.0.0",
  1607. "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
  1608. },
  1609. "System.Composition.Runtime/6.0.0": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
  1613. "path": "system.composition.runtime/6.0.0",
  1614. "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
  1615. },
  1616. "System.Composition.TypedParts/6.0.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
  1620. "path": "system.composition.typedparts/6.0.0",
  1621. "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
  1622. },
  1623. "System.Configuration.ConfigurationManager/6.0.1": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  1627. "path": "system.configuration.configurationmanager/6.0.1",
  1628. "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
  1629. },
  1630. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  1634. "path": "system.diagnostics.diagnosticsource/6.0.0",
  1635. "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
  1636. },
  1637. "System.Drawing.Common/6.0.0": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  1641. "path": "system.drawing.common/6.0.0",
  1642. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  1643. },
  1644. "System.Formats.Asn1/5.0.0": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  1648. "path": "system.formats.asn1/5.0.0",
  1649. "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
  1650. },
  1651. "System.IdentityModel.Tokens.Jwt/7.1.2": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==",
  1655. "path": "system.identitymodel.tokens.jwt/7.1.2",
  1656. "hashPath": "system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512"
  1657. },
  1658. "System.IO.Pipelines/6.0.3": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  1662. "path": "system.io.pipelines/6.0.3",
  1663. "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
  1664. },
  1665. "System.Memory/4.5.4": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  1669. "path": "system.memory/4.5.4",
  1670. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  1671. },
  1672. "System.Memory.Data/1.0.2": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  1676. "path": "system.memory.data/1.0.2",
  1677. "hashPath": "system.memory.data.1.0.2.nupkg.sha512"
  1678. },
  1679. "System.Numerics.Vectors/4.5.0": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  1683. "path": "system.numerics.vectors/4.5.0",
  1684. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  1685. },
  1686. "System.Reflection.Metadata/6.0.1": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
  1690. "path": "system.reflection.metadata/6.0.1",
  1691. "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512"
  1692. },
  1693. "System.Runtime.Caching/6.0.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  1697. "path": "system.runtime.caching/6.0.0",
  1698. "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512"
  1699. },
  1700. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1704. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1705. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  1706. },
  1707. "System.Security.AccessControl/6.0.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  1711. "path": "system.security.accesscontrol/6.0.0",
  1712. "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
  1713. },
  1714. "System.Security.Cryptography.Cng/5.0.0": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  1718. "path": "system.security.cryptography.cng/5.0.0",
  1719. "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
  1720. },
  1721. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  1725. "path": "system.security.cryptography.protecteddata/6.0.0",
  1726. "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
  1727. },
  1728. "System.Security.Permissions/6.0.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  1732. "path": "system.security.permissions/6.0.0",
  1733. "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
  1734. },
  1735. "System.Security.Principal.Windows/5.0.0": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1739. "path": "system.security.principal.windows/5.0.0",
  1740. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  1741. },
  1742. "System.Text.Encoding.CodePages/6.0.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  1746. "path": "system.text.encoding.codepages/6.0.0",
  1747. "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
  1748. },
  1749. "System.Text.Encodings.Web/8.0.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  1753. "path": "system.text.encodings.web/8.0.0",
  1754. "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
  1755. },
  1756. "System.Text.Json/8.0.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  1760. "path": "system.text.json/8.0.0",
  1761. "hashPath": "system.text.json.8.0.0.nupkg.sha512"
  1762. },
  1763. "System.Threading.Channels/6.0.0": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
  1767. "path": "system.threading.channels/6.0.0",
  1768. "hashPath": "system.threading.channels.6.0.0.nupkg.sha512"
  1769. },
  1770. "System.Threading.Tasks.Extensions/4.5.4": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  1774. "path": "system.threading.tasks.extensions/4.5.4",
  1775. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  1776. },
  1777. "System.Windows.Extensions/6.0.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  1781. "path": "system.windows.extensions/6.0.0",
  1782. "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
  1783. },
  1784. "AipGateway.API.Application/1.0.0": {
  1785. "type": "project",
  1786. "serviceable": false,
  1787. "sha512": ""
  1788. },
  1789. "AipGateway.API.Domain/1.0.0": {
  1790. "type": "project",
  1791. "serviceable": false,
  1792. "sha512": ""
  1793. },
  1794. "AipGateway.API.Infrastructure/1.0.0": {
  1795. "type": "project",
  1796. "serviceable": false,
  1797. "sha512": ""
  1798. }
  1799. }
  1800. }