netcore-blueprint 1.0.22 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (625) hide show
  1. package/BlueprintTemplate/.gitlab-ci.yml +21 -0
  2. package/BlueprintTemplate/Blueprint.API/Blueprint.API.csproj +29 -28
  3. package/BlueprintTemplate/Blueprint.API/Blueprint.API.csproj.user +7 -7
  4. package/BlueprintTemplate/Blueprint.API/Blueprint.API.http +6 -6
  5. package/BlueprintTemplate/Blueprint.API/Controllers/UserController.cs +178 -179
  6. package/BlueprintTemplate/Blueprint.API/Controllers/UserControllerAsync.cs +51 -51
  7. package/BlueprintTemplate/Blueprint.API/Controllers/VersionController.cs +40 -43
  8. package/BlueprintTemplate/Blueprint.API/Controllers/WeatherForecastController.cs +33 -33
  9. package/BlueprintTemplate/Blueprint.API/Mappers/DtoMappingProfile.cs +28 -28
  10. package/BlueprintTemplate/Blueprint.API/Program.cs +213 -176
  11. package/BlueprintTemplate/Blueprint.API/Properties/launchSettings.json +41 -41
  12. package/BlueprintTemplate/Blueprint.API/Services/RabbitMqConsumerService.cs +157 -154
  13. package/BlueprintTemplate/Blueprint.API/WeatherForecast.cs +13 -13
  14. package/BlueprintTemplate/Blueprint.API/appsettings.Development.json +8 -8
  15. package/BlueprintTemplate/Blueprint.API/appsettings.json +27 -22
  16. package/BlueprintTemplate/Blueprint.Core/Blueprint.Core.csproj +15 -15
  17. package/BlueprintTemplate/Blueprint.Core/Dtos/Others/BaseDto.cs +10 -0
  18. package/BlueprintTemplate/Blueprint.Core/Dtos/Requests/BaseRequestDto.cs +25 -25
  19. package/BlueprintTemplate/Blueprint.Core/Dtos/Requests/UserRequestDto.cs +12 -12
  20. package/BlueprintTemplate/Blueprint.Core/Dtos/Responses/BaseResponseDto.cs +28 -28
  21. package/BlueprintTemplate/Blueprint.Core/Dtos/Responses/UserResponseDto.cs +11 -11
  22. package/BlueprintTemplate/Blueprint.Core/Entities/BaseEntity.cs +23 -23
  23. package/BlueprintTemplate/Blueprint.Core/Entities/Category.cs +9 -9
  24. package/BlueprintTemplate/Blueprint.Core/Entities/Product.cs +13 -13
  25. package/BlueprintTemplate/Blueprint.Core/Entities/User.cs +16 -16
  26. package/BlueprintTemplate/Blueprint.Core/Enums/ActionType.cs +11 -11
  27. package/BlueprintTemplate/Blueprint.Core/Enums/UserRole.cs +10 -10
  28. package/BlueprintTemplate/Blueprint.Core/Interfaces/API/IItemService.cs +14 -13
  29. package/BlueprintTemplate/Blueprint.Core/Interfaces/API/IUserService.cs +10 -10
  30. package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IItemInfra.cs +14 -14
  31. package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IRabbitMqService.cs +7 -7
  32. package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IRepositoryFactory.cs +10 -10
  33. package/BlueprintTemplate/Blueprint.Core/Interfaces/SPI/IUserInfra.cs +10 -10
  34. package/BlueprintTemplate/Blueprint.Core/Models/Error.cs +69 -69
  35. package/BlueprintTemplate/Blueprint.Core/Models/ErrorDetail.cs +8 -8
  36. package/BlueprintTemplate/Blueprint.Core/Models/PagerData.cs +8 -8
  37. package/BlueprintTemplate/Blueprint.Core/Models/PagingParams.cs +8 -8
  38. package/BlueprintTemplate/Blueprint.Core/Program.cs +7 -7
  39. package/BlueprintTemplate/Blueprint.Core/Properties/launchSettings.json +12 -12
  40. package/BlueprintTemplate/Blueprint.Core/Services/ItemService.cs +52 -47
  41. package/BlueprintTemplate/Blueprint.Core/Services/UserService.cs +108 -108
  42. package/BlueprintTemplate/Blueprint.Core/StaticClasses/Errors.cs +20 -20
  43. package/BlueprintTemplate/Blueprint.Core/Worker.cs +24 -24
  44. package/BlueprintTemplate/Blueprint.Infra/Blueprint.Infra.csproj +25 -29
  45. package/BlueprintTemplate/Blueprint.Infra/Database/DbInitializer.cs +188 -188
  46. package/BlueprintTemplate/Blueprint.Infra/Database/MyDbContext.cs +24 -24
  47. package/BlueprintTemplate/Blueprint.Infra/Migrations/20250401143459_InitialCreate.Designer.cs +315 -0
  48. package/BlueprintTemplate/Blueprint.Infra/Migrations/20250401143459_InitialCreate.cs +149 -0
  49. package/BlueprintTemplate/Blueprint.Infra/Migrations/MyDbContextModelSnapshot.cs +312 -0
  50. package/BlueprintTemplate/Blueprint.Infra/Program.cs +7 -7
  51. package/BlueprintTemplate/Blueprint.Infra/Properties/launchSettings.json +12 -12
  52. package/BlueprintTemplate/Blueprint.Infra/Services/MongoItemInfra.cs +113 -110
  53. package/BlueprintTemplate/Blueprint.Infra/Services/MongoUserInfra.cs +31 -31
  54. package/BlueprintTemplate/Blueprint.Infra/Services/MySQLItemInfra.cs +131 -111
  55. package/BlueprintTemplate/Blueprint.Infra/Services/MySQLUserInfra.cs +29 -29
  56. package/BlueprintTemplate/Blueprint.Infra/Services/RabbitMqService.cs +62 -61
  57. package/BlueprintTemplate/Blueprint.Infra/Services/RepositoryFactory.cs +39 -39
  58. package/BlueprintTemplate/Blueprint.Infra/Worker.cs +24 -24
  59. package/BlueprintTemplate/Blueprint.Test/Blueprint.Test.csproj +29 -29
  60. package/BlueprintTemplate/Blueprint.Test/UnitTest1.cs +10 -10
  61. package/BlueprintTemplate/Blueprint.sln +43 -43
  62. package/BlueprintTemplate/Dockerfile +22 -0
  63. package/BlueprintTemplate/README.md +22 -0
  64. package/BlueprintTemplate/build-and-push.sh +42 -0
  65. package/BlueprintTemplate/docker-run/.env +3 -0
  66. package/BlueprintTemplate/docker-run/docker-compose.yml +41 -0
  67. package/BlueprintTemplate/gitignore +17 -17
  68. package/README.md +74 -0
  69. package/create.js +75 -75
  70. package/package.json +1 -1
  71. package/BlueprintTemplate/.vs/Blueprint/DesignTimeBuild/.dtbcache.v2 +0 -0
  72. package/BlueprintTemplate/.vs/Blueprint/FileContentIndex/746e9dcf-afa3-4bf0-b81a-fb78664dee28.vsidx +0 -0
  73. package/BlueprintTemplate/.vs/Blueprint/config/applicationhost.config +0 -1021
  74. package/BlueprintTemplate/.vs/Blueprint/v17/.futdcache.v2 +0 -0
  75. package/BlueprintTemplate/.vs/Blueprint/v17/.suo +0 -0
  76. package/BlueprintTemplate/.vs/Blueprint/v17/DocumentLayout.json +0 -12
  77. package/BlueprintTemplate/.vs/Blueprint.API/DesignTimeBuild/.dtbcache.v2 +0 -0
  78. package/BlueprintTemplate/.vs/Blueprint.API/FileContentIndex/7e5dec4e-1a8c-4898-8ae1-542fdd9cfb31.vsidx +0 -0
  79. package/BlueprintTemplate/.vs/Blueprint.API/config/applicationhost.config +0 -1021
  80. package/BlueprintTemplate/.vs/Blueprint.API/v17/.futdcache.v2 +0 -0
  81. package/BlueprintTemplate/.vs/Blueprint.API/v17/.suo +0 -0
  82. package/BlueprintTemplate/.vs/Blueprint.API/v17/DocumentLayout.json +0 -12
  83. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.metadata.v8.bin +0 -0
  84. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.projects.v8.bin +0 -0
  85. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.api.strings.v8.bin +0 -0
  86. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.metadata.v8.bin +0 -0
  87. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.projects.v8.bin +0 -0
  88. package/BlueprintTemplate/.vs/ProjectEvaluation/blueprint.strings.v8.bin +0 -0
  89. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.Core.dll +0 -0
  90. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.Extensions.NETCore.Setup.dll +0 -0
  91. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AWSSDK.S3.dll +0 -0
  92. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/AutoMapper.dll +0 -0
  93. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.deps.json +0 -1702
  94. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.dll +0 -0
  95. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.exe +0 -0
  96. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.pdb +0 -0
  97. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.API.runtimeconfig.json +0 -20
  98. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.deps.json +0 -777
  99. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
  100. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
  101. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
  102. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +0 -12
  103. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.deps.json +0 -1636
  104. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
  105. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
  106. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
  107. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +0 -13
  108. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/DnsClient.dll +0 -0
  109. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Humanizer.dll +0 -0
  110. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +0 -0
  111. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Versioning.dll +0 -0
  112. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  113. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
  114. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  115. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  116. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  117. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +0 -0
  118. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
  119. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +0 -0
  120. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
  121. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
  122. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
  123. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  124. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
  125. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +0 -0
  126. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  127. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
  128. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
  129. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
  130. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
  131. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
  132. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +0 -0
  133. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +0 -0
  134. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
  135. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Microsoft.OpenApi.dll +0 -0
  136. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
  137. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
  138. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Mono.TextTemplating.dll +0 -0
  139. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/MySqlConnector.dll +0 -0
  140. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
  141. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
  142. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/SharpCompress.dll +0 -0
  143. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Snappier.dll +0 -0
  144. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +0 -0
  145. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +0 -0
  146. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +0 -0
  147. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.CodeDom.dll +0 -0
  148. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.AttributedModel.dll +0 -0
  149. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Convention.dll +0 -0
  150. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Hosting.dll +0 -0
  151. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.Runtime.dll +0 -0
  152. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.Composition.TypedParts.dll +0 -0
  153. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
  154. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ZstdSharp.dll +0 -0
  155. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/appsettings.Development.json +0 -8
  156. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/appsettings.json +0 -22
  157. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  158. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  159. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  160. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  161. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  162. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  163. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  164. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  165. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  166. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  167. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  168. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  169. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  170. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  171. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  172. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  173. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  174. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  175. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  176. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  177. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  178. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  179. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  180. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  181. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  182. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  183. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  184. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  185. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  186. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  187. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  188. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  189. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  190. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  191. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  192. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  193. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  194. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  195. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  196. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  197. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  198. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  199. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  200. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  201. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  202. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  203. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  204. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  205. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  206. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  207. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  208. package/BlueprintTemplate/Blueprint.API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  209. package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.dgspec.json +0 -283
  210. package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.g.props +0 -28
  211. package/BlueprintTemplate/Blueprint.API/obj/Blueprint.API.csproj.nuget.g.targets +0 -11
  212. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +0 -4
  213. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprin.4BAE1BA3.Up2Date +0 -0
  214. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.AssemblyInfo.cs +0 -23
  215. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.AssemblyInfoInputs.cache +0 -1
  216. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.GeneratedMSBuildEditorConfig.editorconfig +0 -19
  217. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.GlobalUsings.g.cs +0 -17
  218. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.MvcApplicationPartsAssemblyInfo.cache +0 -0
  219. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.MvcApplicationPartsAssemblyInfo.cs +0 -18
  220. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.assets.cache +0 -0
  221. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.AssemblyReference.cache +0 -0
  222. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.BuildWithSkipAnalyzers +0 -0
  223. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.CoreCompileInputs.cache +0 -1
  224. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.csproj.FileListAbsolute.txt +0 -426
  225. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.dll +0 -0
  226. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.genruntimeconfig.cache +0 -1
  227. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.pdb +0 -0
  228. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/Blueprint.API.sourcelink.json +0 -1
  229. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/apphost.exe +0 -0
  230. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/ref/Blueprint.API.dll +0 -0
  231. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/refint/Blueprint.API.dll +0 -0
  232. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.build.Blueprint.API.props +0 -3
  233. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Blueprint.API.props +0 -3
  234. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Blueprint.API.props +0 -3
  235. package/BlueprintTemplate/Blueprint.API/obj/Debug/net8.0/staticwebassets.build.json +0 -11
  236. package/BlueprintTemplate/Blueprint.API/obj/project.assets.json +0 -5171
  237. package/BlueprintTemplate/Blueprint.API/obj/project.nuget.cache +0 -105
  238. package/BlueprintTemplate/Blueprint.Core/appsettings.Development.json +0 -8
  239. package/BlueprintTemplate/Blueprint.Core/appsettings.json +0 -8
  240. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.deps.json +0 -777
  241. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
  242. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
  243. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
  244. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +0 -12
  245. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
  246. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  247. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll +0 -0
  248. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll +0 -0
  249. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +0 -0
  250. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll +0 -0
  251. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll +0 -0
  252. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll +0 -0
  253. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll +0 -0
  254. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  255. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
  256. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  257. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll +0 -0
  258. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  259. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll +0 -0
  260. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll +0 -0
  261. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  262. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll +0 -0
  263. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  264. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll +0 -0
  265. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll +0 -0
  266. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll +0 -0
  267. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll +0 -0
  268. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll +0 -0
  269. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
  270. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +0 -0
  271. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
  272. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +0 -0
  273. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
  274. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
  275. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
  276. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
  277. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
  278. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/System.Diagnostics.EventLog.dll +0 -0
  279. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
  280. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/appsettings.Development.json +0 -8
  281. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/appsettings.json +0 -8
  282. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  283. package/BlueprintTemplate/Blueprint.Core/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  284. package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.dgspec.json +0 -83
  285. package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.g.props +0 -18
  286. package/BlueprintTemplate/Blueprint.Core/obj/Blueprint.Core.csproj.nuget.g.targets +0 -10
  287. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +0 -4
  288. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprin.55786069.Up2Date +0 -0
  289. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.AssemblyInfo.cs +0 -24
  290. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.AssemblyInfoInputs.cache +0 -1
  291. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.GeneratedMSBuildEditorConfig.editorconfig +0 -13
  292. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.GlobalUsings.g.cs +0 -12
  293. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.assets.cache +0 -0
  294. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.AssemblyReference.cache +0 -0
  295. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.BuildWithSkipAnalyzers +0 -0
  296. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.CoreCompileInputs.cache +0 -1
  297. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.csproj.FileListAbsolute.txt +0 -168
  298. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.dll +0 -0
  299. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.genruntimeconfig.cache +0 -1
  300. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.pdb +0 -0
  301. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/Blueprint.Core.sourcelink.json +0 -1
  302. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/apphost.exe +0 -0
  303. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/ref/Blueprint.Core.dll +0 -0
  304. package/BlueprintTemplate/Blueprint.Core/obj/Debug/net8.0/refint/Blueprint.Core.dll +0 -0
  305. package/BlueprintTemplate/Blueprint.Core/obj/project.assets.json +0 -2182
  306. package/BlueprintTemplate/Blueprint.Core/obj/project.nuget.cache +0 -49
  307. package/BlueprintTemplate/Blueprint.Infra/appsettings.Development.json +0 -8
  308. package/BlueprintTemplate/Blueprint.Infra/appsettings.json +0 -8
  309. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.deps.json +0 -777
  310. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
  311. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
  312. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
  313. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +0 -12
  314. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.deps.json +0 -1636
  315. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
  316. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
  317. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
  318. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +0 -13
  319. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/DnsClient.dll +0 -0
  320. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Humanizer.dll +0 -0
  321. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  322. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
  323. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  324. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  325. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  326. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +0 -0
  327. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
  328. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +0 -0
  329. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
  330. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
  331. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll +0 -0
  332. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
  333. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  334. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Binder.dll +0 -0
  335. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll +0 -0
  336. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +0 -0
  337. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll +0 -0
  338. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Json.dll +0 -0
  339. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll +0 -0
  340. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Configuration.dll +0 -0
  341. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  342. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
  343. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +0 -0
  344. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  345. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Diagnostics.dll +0 -0
  346. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  347. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileProviders.Physical.dll +0 -0
  348. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll +0 -0
  349. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  350. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Hosting.dll +0 -0
  351. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  352. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Configuration.dll +0 -0
  353. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Console.dll +0 -0
  354. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.Debug.dll +0 -0
  355. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventLog.dll +0 -0
  356. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.EventSource.dll +0 -0
  357. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
  358. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll +0 -0
  359. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
  360. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +0 -0
  361. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
  362. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
  363. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
  364. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
  365. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
  366. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
  367. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Mono.TextTemplating.dll +0 -0
  368. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/MySqlConnector.dll +0 -0
  369. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
  370. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
  371. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/SharpCompress.dll +0 -0
  372. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/Snappier.dll +0 -0
  373. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.CodeDom.dll +0 -0
  374. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.AttributedModel.dll +0 -0
  375. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Convention.dll +0 -0
  376. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Hosting.dll +0 -0
  377. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.Runtime.dll +0 -0
  378. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Composition.TypedParts.dll +0 -0
  379. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Diagnostics.EventLog.dll +0 -0
  380. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.IO.Pipelines.dll +0 -0
  381. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
  382. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/System.Threading.RateLimiting.dll +0 -0
  383. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ZstdSharp.dll +0 -0
  384. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/appsettings.Development.json +0 -8
  385. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/appsettings.json +0 -8
  386. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  387. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  388. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  389. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  390. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  391. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  392. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  393. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  394. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  395. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  396. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  397. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  398. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  399. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  400. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  401. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  402. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  403. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  404. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  405. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  406. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  407. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  408. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  409. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  410. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  411. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  412. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  413. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  414. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  415. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  416. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  417. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  418. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  419. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  420. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  421. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  422. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  423. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  424. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  425. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  426. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  427. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  428. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  429. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  430. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  431. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  432. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  433. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  434. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  435. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  436. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  437. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  438. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  439. package/BlueprintTemplate/Blueprint.Infra/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  440. package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.dgspec.json +0 -176
  441. package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.g.props +0 -24
  442. package/BlueprintTemplate/Blueprint.Infra/obj/Blueprint.Infra.csproj.nuget.g.targets +0 -10
  443. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +0 -4
  444. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprin.DC076348.Up2Date +0 -0
  445. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.AssemblyInfo.cs +0 -24
  446. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.AssemblyInfoInputs.cache +0 -1
  447. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.GeneratedMSBuildEditorConfig.editorconfig +0 -13
  448. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.GlobalUsings.g.cs +0 -12
  449. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.assets.cache +0 -0
  450. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.AssemblyReference.cache +0 -0
  451. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.BuildWithSkipAnalyzers +0 -0
  452. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.CoreCompileInputs.cache +0 -1
  453. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.csproj.FileListAbsolute.txt +0 -429
  454. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.dll +0 -0
  455. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.genruntimeconfig.cache +0 -1
  456. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.pdb +0 -0
  457. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/Blueprint.Infra.sourcelink.json +0 -1
  458. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/apphost.exe +0 -0
  459. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/ref/Blueprint.Infra.dll +0 -0
  460. package/BlueprintTemplate/Blueprint.Infra/obj/Debug/net8.0/refint/Blueprint.Infra.dll +0 -0
  461. package/BlueprintTemplate/Blueprint.Infra/obj/project.assets.json +0 -4442
  462. package/BlueprintTemplate/Blueprint.Infra/obj/project.nuget.cache +0 -92
  463. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.Core.dll +0 -0
  464. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.Extensions.NETCore.Setup.dll +0 -0
  465. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AWSSDK.S3.dll +0 -0
  466. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/AutoMapper.dll +0 -0
  467. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.deps.json +0 -1702
  468. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.dll +0 -0
  469. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.exe +0 -0
  470. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.pdb +0 -0
  471. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.API.runtimeconfig.json +0 -20
  472. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.deps.json +0 -777
  473. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.dll +0 -0
  474. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.exe +0 -0
  475. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.pdb +0 -0
  476. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Core.runtimeconfig.json +0 -12
  477. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.deps.json +0 -1636
  478. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.dll +0 -0
  479. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.exe +0 -0
  480. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.pdb +0 -0
  481. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Infra.runtimeconfig.json +0 -13
  482. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.deps.json +0 -2804
  483. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.dll +0 -0
  484. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.pdb +0 -0
  485. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Blueprint.Test.runtimeconfig.json +0 -19
  486. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/CoverletSourceRootsMapping_Blueprint.Test +0 -0
  487. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/DnsClient.dll +0 -0
  488. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +0 -0
  489. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Versioning.dll +0 -0
  490. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll +0 -0
  491. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +0 -0
  492. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +0 -0
  493. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +0 -0
  494. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +0 -0
  495. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  496. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +0 -0
  497. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  498. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +0 -0
  499. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +0 -0
  500. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll +0 -0
  501. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll +0 -0
  502. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll +0 -0
  503. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +0 -0
  504. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll +0 -0
  505. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll +0 -0
  506. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.OpenApi.dll +0 -0
  507. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll +0 -0
  508. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll +0 -0
  509. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll +0 -0
  510. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll +0 -0
  511. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll +0 -0
  512. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll +0 -0
  513. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll +0 -0
  514. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +0 -0
  515. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MongoDB.Bson.dll +0 -0
  516. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MongoDB.Driver.dll +0 -0
  517. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/MySqlConnector.dll +0 -0
  518. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Newtonsoft.Json.dll +0 -0
  519. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/NuGet.Frameworks.dll +0 -0
  520. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Pomelo.EntityFrameworkCore.MySql.dll +0 -0
  521. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/RabbitMQ.Client.dll +0 -0
  522. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/SharpCompress.dll +0 -0
  523. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Snappier.dll +0 -0
  524. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll +0 -0
  525. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll +0 -0
  526. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll +0 -0
  527. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll +0 -0
  528. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ZstdSharp.dll +0 -0
  529. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/appsettings.Development.json +0 -8
  530. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/appsettings.json +0 -17
  531. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  532. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  533. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  534. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  535. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  536. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  537. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  538. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  539. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  540. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  541. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  542. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  543. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  544. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  545. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  546. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  547. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  548. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  549. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  550. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  551. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  552. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  553. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  554. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  555. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  556. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  557. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  558. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  559. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  560. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  561. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  562. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  563. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  564. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  565. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  566. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  567. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  568. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  569. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  570. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  571. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  572. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  573. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  574. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  575. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  576. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  577. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  578. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  579. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  580. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  581. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/testhost.dll +0 -0
  582. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/testhost.exe +0 -0
  583. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  584. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  585. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  586. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  587. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  588. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.abstractions.dll +0 -0
  589. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.assert.dll +0 -0
  590. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.core.dll +0 -0
  591. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.execution.dotnet.dll +0 -0
  592. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.reporters.netcoreapp10.dll +0 -0
  593. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.utility.netcoreapp10.dll +0 -0
  594. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll +0 -0
  595. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  596. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  597. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  598. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  599. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  600. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll +0 -0
  601. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll +0 -0
  602. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll +0 -0
  603. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll +0 -0
  604. package/BlueprintTemplate/Blueprint.Test/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +0 -0
  605. package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.dgspec.json +0 -372
  606. package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.g.props +0 -30
  607. package/BlueprintTemplate/Blueprint.Test/obj/Blueprint.Test.csproj.nuget.g.targets +0 -14
  608. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +0 -4
  609. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprin.BFA8907E.Up2Date +0 -0
  610. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.AssemblyInfo.cs +0 -23
  611. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.AssemblyInfoInputs.cache +0 -1
  612. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.GeneratedMSBuildEditorConfig.editorconfig +0 -13
  613. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.GlobalUsings.g.cs +0 -9
  614. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.assets.cache +0 -0
  615. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.AssemblyReference.cache +0 -0
  616. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.CoreCompileInputs.cache +0 -1
  617. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.csproj.FileListAbsolute.txt +0 -154
  618. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.dll +0 -0
  619. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.genruntimeconfig.cache +0 -1
  620. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.pdb +0 -0
  621. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/Blueprint.Test.sourcelink.json +0 -1
  622. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/ref/Blueprint.Test.dll +0 -0
  623. package/BlueprintTemplate/Blueprint.Test/obj/Debug/net8.0/refint/Blueprint.Test.dll +0 -0
  624. package/BlueprintTemplate/Blueprint.Test/obj/project.assets.json +0 -9266
  625. package/BlueprintTemplate/Blueprint.Test/obj/project.nuget.cache +0 -170
@@ -1,1702 +0,0 @@
1
- {
2
- "runtimeTarget": {
3
- "name": ".NETCoreApp,Version=v8.0",
4
- "signature": ""
5
- },
6
- "compilationOptions": {},
7
- "targets": {
8
- ".NETCoreApp,Version=v8.0": {
9
- "Blueprint.API/1.0.0": {
10
- "dependencies": {
11
- "AWSSDK.Extensions.NETCore.Setup": "3.7.301",
12
- "AWSSDK.S3": "3.7.410.12",
13
- "AutoMapper": "13.0.1",
14
- "Blueprint.Core": "1.0.0",
15
- "Blueprint.Infra": "1.0.0",
16
- "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.10",
17
- "Microsoft.AspNetCore.Mvc.Versioning": "5.1.0",
18
- "Microsoft.EntityFrameworkCore.Design": "8.0.10",
19
- "RabbitMQ.Client": "7.0.0",
20
- "Swashbuckle.AspNetCore": "6.4.0"
21
- },
22
- "runtime": {
23
- "Blueprint.API.dll": {}
24
- }
25
- },
26
- "AutoMapper/13.0.1": {
27
- "dependencies": {
28
- "Microsoft.Extensions.Options": "8.0.2"
29
- },
30
- "runtime": {
31
- "lib/net6.0/AutoMapper.dll": {
32
- "assemblyVersion": "13.0.0.0",
33
- "fileVersion": "13.0.1.0"
34
- }
35
- }
36
- },
37
- "AWSSDK.Core/3.7.400.70": {
38
- "runtime": {
39
- "lib/net8.0/AWSSDK.Core.dll": {
40
- "assemblyVersion": "3.3.0.0",
41
- "fileVersion": "3.7.400.70"
42
- }
43
- }
44
- },
45
- "AWSSDK.Extensions.NETCore.Setup/3.7.301": {
46
- "dependencies": {
47
- "AWSSDK.Core": "3.7.400.70",
48
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
49
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
50
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
51
- },
52
- "runtime": {
53
- "lib/net8.0/AWSSDK.Extensions.NETCore.Setup.dll": {
54
- "assemblyVersion": "3.3.0.0",
55
- "fileVersion": "3.7.7.0"
56
- }
57
- }
58
- },
59
- "AWSSDK.S3/3.7.410.12": {
60
- "dependencies": {
61
- "AWSSDK.Core": "3.7.400.70"
62
- },
63
- "runtime": {
64
- "lib/net8.0/AWSSDK.S3.dll": {
65
- "assemblyVersion": "3.3.0.0",
66
- "fileVersion": "3.7.410.12"
67
- }
68
- }
69
- },
70
- "DnsClient/1.6.1": {
71
- "dependencies": {
72
- "Microsoft.Win32.Registry": "5.0.0"
73
- },
74
- "runtime": {
75
- "lib/net5.0/DnsClient.dll": {
76
- "assemblyVersion": "1.6.1.0",
77
- "fileVersion": "1.6.1.0"
78
- }
79
- }
80
- },
81
- "Humanizer.Core/2.14.1": {
82
- "runtime": {
83
- "lib/net6.0/Humanizer.dll": {
84
- "assemblyVersion": "2.14.0.0",
85
- "fileVersion": "2.14.1.48190"
86
- }
87
- }
88
- },
89
- "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": {
90
- "dependencies": {
91
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
92
- },
93
- "runtime": {
94
- "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
95
- "assemblyVersion": "8.0.10.0",
96
- "fileVersion": "8.0.1024.46804"
97
- }
98
- }
99
- },
100
- "Microsoft.AspNetCore.Mvc.Versioning/5.1.0": {
101
- "runtime": {
102
- "lib/net6.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
103
- "assemblyVersion": "5.1.0.0",
104
- "fileVersion": "5.1.8270.41513"
105
- }
106
- }
107
- },
108
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
109
- "runtime": {
110
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
111
- "assemblyVersion": "6.0.0.0",
112
- "fileVersion": "6.0.21.52210"
113
- }
114
- }
115
- },
116
- "Microsoft.Bcl.Memory/9.0.0": {
117
- "runtime": {
118
- "lib/net8.0/Microsoft.Bcl.Memory.dll": {
119
- "assemblyVersion": "9.0.0.0",
120
- "fileVersion": "9.0.24.52809"
121
- }
122
- }
123
- },
124
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
125
- "Microsoft.CodeAnalysis.Common/4.5.0": {
126
- "dependencies": {
127
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
128
- "System.Collections.Immutable": "6.0.0",
129
- "System.Reflection.Metadata": "6.0.1",
130
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
131
- "System.Text.Encoding.CodePages": "6.0.0"
132
- },
133
- "runtime": {
134
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
135
- "assemblyVersion": "4.5.0.0",
136
- "fileVersion": "4.500.23.10905"
137
- }
138
- },
139
- "resources": {
140
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
141
- "locale": "cs"
142
- },
143
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
144
- "locale": "de"
145
- },
146
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
147
- "locale": "es"
148
- },
149
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
150
- "locale": "fr"
151
- },
152
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
153
- "locale": "it"
154
- },
155
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
156
- "locale": "ja"
157
- },
158
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
159
- "locale": "ko"
160
- },
161
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
162
- "locale": "pl"
163
- },
164
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
165
- "locale": "pt-BR"
166
- },
167
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
168
- "locale": "ru"
169
- },
170
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
171
- "locale": "tr"
172
- },
173
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
174
- "locale": "zh-Hans"
175
- },
176
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
177
- "locale": "zh-Hant"
178
- }
179
- }
180
- },
181
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
182
- "dependencies": {
183
- "Microsoft.CodeAnalysis.Common": "4.5.0"
184
- },
185
- "runtime": {
186
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
187
- "assemblyVersion": "4.5.0.0",
188
- "fileVersion": "4.500.23.10905"
189
- }
190
- },
191
- "resources": {
192
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
193
- "locale": "cs"
194
- },
195
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
196
- "locale": "de"
197
- },
198
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
199
- "locale": "es"
200
- },
201
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
202
- "locale": "fr"
203
- },
204
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
205
- "locale": "it"
206
- },
207
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
208
- "locale": "ja"
209
- },
210
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
211
- "locale": "ko"
212
- },
213
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
214
- "locale": "pl"
215
- },
216
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
217
- "locale": "pt-BR"
218
- },
219
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
220
- "locale": "ru"
221
- },
222
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
223
- "locale": "tr"
224
- },
225
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
226
- "locale": "zh-Hans"
227
- },
228
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
229
- "locale": "zh-Hant"
230
- }
231
- }
232
- },
233
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
234
- "dependencies": {
235
- "Humanizer.Core": "2.14.1",
236
- "Microsoft.CodeAnalysis.CSharp": "4.5.0",
237
- "Microsoft.CodeAnalysis.Common": "4.5.0",
238
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
239
- },
240
- "runtime": {
241
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
242
- "assemblyVersion": "4.5.0.0",
243
- "fileVersion": "4.500.23.10905"
244
- }
245
- },
246
- "resources": {
247
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
248
- "locale": "cs"
249
- },
250
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
251
- "locale": "de"
252
- },
253
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
254
- "locale": "es"
255
- },
256
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
257
- "locale": "fr"
258
- },
259
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
260
- "locale": "it"
261
- },
262
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
263
- "locale": "ja"
264
- },
265
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
266
- "locale": "ko"
267
- },
268
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
269
- "locale": "pl"
270
- },
271
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
272
- "locale": "pt-BR"
273
- },
274
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
275
- "locale": "ru"
276
- },
277
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
278
- "locale": "tr"
279
- },
280
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
281
- "locale": "zh-Hans"
282
- },
283
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
284
- "locale": "zh-Hant"
285
- }
286
- }
287
- },
288
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
289
- "dependencies": {
290
- "Humanizer.Core": "2.14.1",
291
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
292
- "Microsoft.CodeAnalysis.Common": "4.5.0",
293
- "System.Composition": "6.0.0",
294
- "System.IO.Pipelines": "8.0.0",
295
- "System.Threading.Channels": "6.0.0"
296
- },
297
- "runtime": {
298
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
299
- "assemblyVersion": "4.5.0.0",
300
- "fileVersion": "4.500.23.10905"
301
- }
302
- },
303
- "resources": {
304
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
305
- "locale": "cs"
306
- },
307
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
308
- "locale": "de"
309
- },
310
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
311
- "locale": "es"
312
- },
313
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
314
- "locale": "fr"
315
- },
316
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
317
- "locale": "it"
318
- },
319
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
320
- "locale": "ja"
321
- },
322
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
323
- "locale": "ko"
324
- },
325
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
326
- "locale": "pl"
327
- },
328
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
329
- "locale": "pt-BR"
330
- },
331
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
332
- "locale": "ru"
333
- },
334
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
335
- "locale": "tr"
336
- },
337
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
338
- "locale": "zh-Hans"
339
- },
340
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
341
- "locale": "zh-Hant"
342
- }
343
- }
344
- },
345
- "Microsoft.EntityFrameworkCore/8.0.10": {
346
- "dependencies": {
347
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
348
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
349
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
350
- "Microsoft.Extensions.Logging": "8.0.1"
351
- },
352
- "runtime": {
353
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
354
- "assemblyVersion": "8.0.10.0",
355
- "fileVersion": "8.0.1024.46708"
356
- }
357
- }
358
- },
359
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
360
- "runtime": {
361
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
362
- "assemblyVersion": "8.0.10.0",
363
- "fileVersion": "8.0.1024.46708"
364
- }
365
- }
366
- },
367
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {},
368
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
369
- "dependencies": {
370
- "Humanizer.Core": "2.14.1",
371
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
372
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
373
- "Microsoft.Extensions.DependencyModel": "8.0.2",
374
- "Mono.TextTemplating": "2.2.1"
375
- },
376
- "runtime": {
377
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
378
- "assemblyVersion": "8.0.10.0",
379
- "fileVersion": "8.0.1024.46708"
380
- }
381
- }
382
- },
383
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
384
- "dependencies": {
385
- "Microsoft.EntityFrameworkCore": "8.0.10",
386
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
387
- },
388
- "runtime": {
389
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
390
- "assemblyVersion": "8.0.10.0",
391
- "fileVersion": "8.0.1024.46708"
392
- }
393
- }
394
- },
395
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
396
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
397
- "dependencies": {
398
- "Microsoft.Extensions.Primitives": "8.0.0"
399
- }
400
- },
401
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
402
- "dependencies": {
403
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
404
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
405
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
406
- "Microsoft.Extensions.Options": "8.0.2",
407
- "Microsoft.Extensions.Primitives": "8.0.0"
408
- },
409
- "runtime": {
410
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
411
- "assemblyVersion": "8.0.0.0",
412
- "fileVersion": "8.0.1024.46610"
413
- }
414
- }
415
- },
416
- "Microsoft.Extensions.Configuration/8.0.0": {
417
- "dependencies": {
418
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
419
- "Microsoft.Extensions.Primitives": "8.0.0"
420
- }
421
- },
422
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
423
- "dependencies": {
424
- "Microsoft.Extensions.Primitives": "8.0.0"
425
- }
426
- },
427
- "Microsoft.Extensions.Configuration.Binder/8.0.0": {
428
- "dependencies": {
429
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
430
- }
431
- },
432
- "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
433
- "dependencies": {
434
- "Microsoft.Extensions.Configuration": "8.0.0",
435
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
436
- }
437
- },
438
- "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
439
- "dependencies": {
440
- "Microsoft.Extensions.Configuration": "8.0.0",
441
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
442
- }
443
- },
444
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
445
- "dependencies": {
446
- "Microsoft.Extensions.Configuration": "8.0.0",
447
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
448
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
449
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
450
- "Microsoft.Extensions.Primitives": "8.0.0"
451
- }
452
- },
453
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
454
- "dependencies": {
455
- "Microsoft.Extensions.Configuration": "8.0.0",
456
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
457
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
458
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
459
- "System.Text.Json": "8.0.0"
460
- }
461
- },
462
- "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
463
- "dependencies": {
464
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
465
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
466
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
467
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
468
- }
469
- },
470
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
471
- "dependencies": {
472
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
473
- },
474
- "runtime": {
475
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
476
- "assemblyVersion": "8.0.0.0",
477
- "fileVersion": "8.0.1024.46610"
478
- }
479
- }
480
- },
481
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
482
- "runtime": {
483
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
484
- "assemblyVersion": "8.0.0.0",
485
- "fileVersion": "8.0.1024.46610"
486
- }
487
- }
488
- },
489
- "Microsoft.Extensions.DependencyModel/8.0.2": {
490
- "runtime": {
491
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
492
- "assemblyVersion": "8.0.0.2",
493
- "fileVersion": "8.0.1024.46610"
494
- }
495
- }
496
- },
497
- "Microsoft.Extensions.Diagnostics/8.0.0": {
498
- "dependencies": {
499
- "Microsoft.Extensions.Configuration": "8.0.0",
500
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
501
- "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
502
- }
503
- },
504
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
505
- "dependencies": {
506
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
507
- "Microsoft.Extensions.Options": "8.0.2",
508
- "System.Diagnostics.DiagnosticSource": "8.0.0"
509
- }
510
- },
511
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
512
- "dependencies": {
513
- "Microsoft.Extensions.Primitives": "8.0.0"
514
- }
515
- },
516
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
517
- "dependencies": {
518
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
519
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
520
- "Microsoft.Extensions.Primitives": "8.0.0"
521
- }
522
- },
523
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {},
524
- "Microsoft.Extensions.Hosting/8.0.0": {
525
- "dependencies": {
526
- "Microsoft.Extensions.Configuration": "8.0.0",
527
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
528
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
529
- "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
530
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
531
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
532
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
533
- "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
534
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
535
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
536
- "Microsoft.Extensions.Diagnostics": "8.0.0",
537
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
538
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
539
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
540
- "Microsoft.Extensions.Logging": "8.0.1",
541
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
542
- "Microsoft.Extensions.Logging.Configuration": "8.0.0",
543
- "Microsoft.Extensions.Logging.Console": "8.0.0",
544
- "Microsoft.Extensions.Logging.Debug": "8.0.0",
545
- "Microsoft.Extensions.Logging.EventLog": "8.0.0",
546
- "Microsoft.Extensions.Logging.EventSource": "8.0.0",
547
- "Microsoft.Extensions.Options": "8.0.2"
548
- }
549
- },
550
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
551
- "dependencies": {
552
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
553
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
554
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
555
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
556
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
557
- }
558
- },
559
- "Microsoft.Extensions.Logging/8.0.1": {
560
- "dependencies": {
561
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
562
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
563
- "Microsoft.Extensions.Options": "8.0.2"
564
- },
565
- "runtime": {
566
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
567
- "assemblyVersion": "8.0.0.0",
568
- "fileVersion": "8.0.1024.46610"
569
- }
570
- }
571
- },
572
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
573
- "dependencies": {
574
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
575
- },
576
- "runtime": {
577
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
578
- "assemblyVersion": "8.0.0.0",
579
- "fileVersion": "8.0.1024.46610"
580
- }
581
- }
582
- },
583
- "Microsoft.Extensions.Logging.Configuration/8.0.0": {
584
- "dependencies": {
585
- "Microsoft.Extensions.Configuration": "8.0.0",
586
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
587
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
588
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
589
- "Microsoft.Extensions.Logging": "8.0.1",
590
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
591
- "Microsoft.Extensions.Options": "8.0.2",
592
- "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
593
- }
594
- },
595
- "Microsoft.Extensions.Logging.Console/8.0.0": {
596
- "dependencies": {
597
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
598
- "Microsoft.Extensions.Logging": "8.0.1",
599
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
600
- "Microsoft.Extensions.Logging.Configuration": "8.0.0",
601
- "Microsoft.Extensions.Options": "8.0.2",
602
- "System.Text.Json": "8.0.0"
603
- }
604
- },
605
- "Microsoft.Extensions.Logging.Debug/8.0.0": {
606
- "dependencies": {
607
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
608
- "Microsoft.Extensions.Logging": "8.0.1",
609
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
610
- }
611
- },
612
- "Microsoft.Extensions.Logging.EventLog/8.0.0": {
613
- "dependencies": {
614
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
615
- "Microsoft.Extensions.Logging": "8.0.1",
616
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
617
- "Microsoft.Extensions.Options": "8.0.2",
618
- "System.Diagnostics.EventLog": "8.0.0"
619
- }
620
- },
621
- "Microsoft.Extensions.Logging.EventSource/8.0.0": {
622
- "dependencies": {
623
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
624
- "Microsoft.Extensions.Logging": "8.0.1",
625
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
626
- "Microsoft.Extensions.Options": "8.0.2",
627
- "Microsoft.Extensions.Primitives": "8.0.0",
628
- "System.Text.Json": "8.0.0"
629
- }
630
- },
631
- "Microsoft.Extensions.Options/8.0.2": {
632
- "dependencies": {
633
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
634
- "Microsoft.Extensions.Primitives": "8.0.0"
635
- },
636
- "runtime": {
637
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
638
- "assemblyVersion": "8.0.0.0",
639
- "fileVersion": "8.0.224.6711"
640
- }
641
- }
642
- },
643
- "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
644
- "dependencies": {
645
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
646
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
647
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
648
- "Microsoft.Extensions.Options": "8.0.2",
649
- "Microsoft.Extensions.Primitives": "8.0.0"
650
- }
651
- },
652
- "Microsoft.Extensions.Primitives/8.0.0": {},
653
- "Microsoft.IdentityModel.Abstractions/8.3.1": {
654
- "runtime": {
655
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
656
- "assemblyVersion": "8.3.1.0",
657
- "fileVersion": "8.3.1.60117"
658
- }
659
- }
660
- },
661
- "Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
662
- "dependencies": {
663
- "Microsoft.IdentityModel.Tokens": "8.3.1"
664
- },
665
- "runtime": {
666
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
667
- "assemblyVersion": "8.3.1.0",
668
- "fileVersion": "8.3.1.60117"
669
- }
670
- }
671
- },
672
- "Microsoft.IdentityModel.Logging/8.3.1": {
673
- "dependencies": {
674
- "Microsoft.IdentityModel.Abstractions": "8.3.1"
675
- },
676
- "runtime": {
677
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
678
- "assemblyVersion": "8.3.1.0",
679
- "fileVersion": "8.3.1.60117"
680
- }
681
- }
682
- },
683
- "Microsoft.IdentityModel.Protocols/7.1.2": {
684
- "dependencies": {
685
- "Microsoft.IdentityModel.Logging": "8.3.1",
686
- "Microsoft.IdentityModel.Tokens": "8.3.1"
687
- },
688
- "runtime": {
689
- "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
690
- "assemblyVersion": "7.1.2.0",
691
- "fileVersion": "7.1.2.41121"
692
- }
693
- }
694
- },
695
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
696
- "dependencies": {
697
- "Microsoft.IdentityModel.Protocols": "7.1.2",
698
- "System.IdentityModel.Tokens.Jwt": "8.3.1"
699
- },
700
- "runtime": {
701
- "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
702
- "assemblyVersion": "7.1.2.0",
703
- "fileVersion": "7.1.2.41121"
704
- }
705
- }
706
- },
707
- "Microsoft.IdentityModel.Tokens/8.3.1": {
708
- "dependencies": {
709
- "Microsoft.Bcl.Memory": "9.0.0",
710
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
711
- "Microsoft.IdentityModel.Logging": "8.3.1"
712
- },
713
- "runtime": {
714
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
715
- "assemblyVersion": "8.3.1.0",
716
- "fileVersion": "8.3.1.60117"
717
- }
718
- }
719
- },
720
- "Microsoft.NETCore.Platforms/5.0.0": {},
721
- "Microsoft.OpenApi/1.2.3": {
722
- "runtime": {
723
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
724
- "assemblyVersion": "1.2.3.0",
725
- "fileVersion": "1.2.3.0"
726
- }
727
- }
728
- },
729
- "Microsoft.Win32.Registry/5.0.0": {
730
- "dependencies": {
731
- "System.Security.AccessControl": "5.0.0",
732
- "System.Security.Principal.Windows": "5.0.0"
733
- }
734
- },
735
- "MongoDB.Bson/3.1.0": {
736
- "dependencies": {
737
- "System.Memory": "4.5.5",
738
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
739
- },
740
- "runtime": {
741
- "lib/net6.0/MongoDB.Bson.dll": {
742
- "assemblyVersion": "3.1.0.0",
743
- "fileVersion": "3.1.0.0"
744
- }
745
- }
746
- },
747
- "MongoDB.Driver/3.1.0": {
748
- "dependencies": {
749
- "DnsClient": "1.6.1",
750
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
751
- "MongoDB.Bson": "3.1.0",
752
- "SharpCompress": "0.30.1",
753
- "Snappier": "1.0.0",
754
- "System.Buffers": "4.5.1",
755
- "ZstdSharp.Port": "0.7.3"
756
- },
757
- "runtime": {
758
- "lib/net6.0/MongoDB.Driver.dll": {
759
- "assemblyVersion": "3.1.0.0",
760
- "fileVersion": "3.1.0.0"
761
- }
762
- }
763
- },
764
- "Mono.TextTemplating/2.2.1": {
765
- "dependencies": {
766
- "System.CodeDom": "4.4.0"
767
- },
768
- "runtime": {
769
- "lib/netstandard2.0/Mono.TextTemplating.dll": {
770
- "assemblyVersion": "2.2.0.0",
771
- "fileVersion": "2.2.1.1"
772
- }
773
- }
774
- },
775
- "MySqlConnector/2.3.5": {
776
- "dependencies": {
777
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
778
- },
779
- "runtime": {
780
- "lib/net8.0/MySqlConnector.dll": {
781
- "assemblyVersion": "2.0.0.0",
782
- "fileVersion": "2.3.5.0"
783
- }
784
- }
785
- },
786
- "Pomelo.EntityFrameworkCore.MySql/8.0.2": {
787
- "dependencies": {
788
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
789
- "MySqlConnector": "2.3.5"
790
- },
791
- "runtime": {
792
- "lib/net8.0/Pomelo.EntityFrameworkCore.MySql.dll": {
793
- "assemblyVersion": "8.0.2.0",
794
- "fileVersion": "8.0.2.0"
795
- }
796
- }
797
- },
798
- "RabbitMQ.Client/7.0.0": {
799
- "dependencies": {
800
- "System.IO.Pipelines": "8.0.0",
801
- "System.Threading.RateLimiting": "8.0.0"
802
- },
803
- "runtime": {
804
- "lib/net8.0/RabbitMQ.Client.dll": {
805
- "assemblyVersion": "7.0.0.0",
806
- "fileVersion": "7.0.0.0"
807
- }
808
- }
809
- },
810
- "SharpCompress/0.30.1": {
811
- "runtime": {
812
- "lib/net5.0/SharpCompress.dll": {
813
- "assemblyVersion": "0.30.1.0",
814
- "fileVersion": "0.30.1.0"
815
- }
816
- }
817
- },
818
- "Snappier/1.0.0": {
819
- "runtime": {
820
- "lib/net5.0/Snappier.dll": {
821
- "assemblyVersion": "1.0.0.0",
822
- "fileVersion": "1.0.0.0"
823
- }
824
- }
825
- },
826
- "Swashbuckle.AspNetCore/6.4.0": {
827
- "dependencies": {
828
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
829
- "Swashbuckle.AspNetCore.Swagger": "6.4.0",
830
- "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
831
- "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
832
- }
833
- },
834
- "Swashbuckle.AspNetCore.Swagger/6.4.0": {
835
- "dependencies": {
836
- "Microsoft.OpenApi": "1.2.3"
837
- },
838
- "runtime": {
839
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
840
- "assemblyVersion": "6.4.0.0",
841
- "fileVersion": "6.4.0.0"
842
- }
843
- }
844
- },
845
- "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
846
- "dependencies": {
847
- "Swashbuckle.AspNetCore.Swagger": "6.4.0"
848
- },
849
- "runtime": {
850
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
851
- "assemblyVersion": "6.4.0.0",
852
- "fileVersion": "6.4.0.0"
853
- }
854
- }
855
- },
856
- "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
857
- "runtime": {
858
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
859
- "assemblyVersion": "6.4.0.0",
860
- "fileVersion": "6.4.0.0"
861
- }
862
- }
863
- },
864
- "System.Buffers/4.5.1": {},
865
- "System.CodeDom/4.4.0": {
866
- "runtime": {
867
- "lib/netstandard2.0/System.CodeDom.dll": {
868
- "assemblyVersion": "4.0.0.0",
869
- "fileVersion": "4.6.25519.3"
870
- }
871
- }
872
- },
873
- "System.Collections.Immutable/6.0.0": {
874
- "dependencies": {
875
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
876
- }
877
- },
878
- "System.Composition/6.0.0": {
879
- "dependencies": {
880
- "System.Composition.AttributedModel": "6.0.0",
881
- "System.Composition.Convention": "6.0.0",
882
- "System.Composition.Hosting": "6.0.0",
883
- "System.Composition.Runtime": "6.0.0",
884
- "System.Composition.TypedParts": "6.0.0"
885
- }
886
- },
887
- "System.Composition.AttributedModel/6.0.0": {
888
- "runtime": {
889
- "lib/net6.0/System.Composition.AttributedModel.dll": {
890
- "assemblyVersion": "6.0.0.0",
891
- "fileVersion": "6.0.21.52210"
892
- }
893
- }
894
- },
895
- "System.Composition.Convention/6.0.0": {
896
- "dependencies": {
897
- "System.Composition.AttributedModel": "6.0.0"
898
- },
899
- "runtime": {
900
- "lib/net6.0/System.Composition.Convention.dll": {
901
- "assemblyVersion": "6.0.0.0",
902
- "fileVersion": "6.0.21.52210"
903
- }
904
- }
905
- },
906
- "System.Composition.Hosting/6.0.0": {
907
- "dependencies": {
908
- "System.Composition.Runtime": "6.0.0"
909
- },
910
- "runtime": {
911
- "lib/net6.0/System.Composition.Hosting.dll": {
912
- "assemblyVersion": "6.0.0.0",
913
- "fileVersion": "6.0.21.52210"
914
- }
915
- }
916
- },
917
- "System.Composition.Runtime/6.0.0": {
918
- "runtime": {
919
- "lib/net6.0/System.Composition.Runtime.dll": {
920
- "assemblyVersion": "6.0.0.0",
921
- "fileVersion": "6.0.21.52210"
922
- }
923
- }
924
- },
925
- "System.Composition.TypedParts/6.0.0": {
926
- "dependencies": {
927
- "System.Composition.AttributedModel": "6.0.0",
928
- "System.Composition.Hosting": "6.0.0",
929
- "System.Composition.Runtime": "6.0.0"
930
- },
931
- "runtime": {
932
- "lib/net6.0/System.Composition.TypedParts.dll": {
933
- "assemblyVersion": "6.0.0.0",
934
- "fileVersion": "6.0.21.52210"
935
- }
936
- }
937
- },
938
- "System.Diagnostics.DiagnosticSource/8.0.0": {},
939
- "System.Diagnostics.EventLog/8.0.0": {},
940
- "System.IdentityModel.Tokens.Jwt/8.3.1": {
941
- "dependencies": {
942
- "Microsoft.IdentityModel.JsonWebTokens": "8.3.1",
943
- "Microsoft.IdentityModel.Tokens": "8.3.1"
944
- },
945
- "runtime": {
946
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
947
- "assemblyVersion": "8.3.1.0",
948
- "fileVersion": "8.3.1.60117"
949
- }
950
- }
951
- },
952
- "System.IO.Pipelines/8.0.0": {},
953
- "System.Memory/4.5.5": {},
954
- "System.Reflection.Metadata/6.0.1": {
955
- "dependencies": {
956
- "System.Collections.Immutable": "6.0.0"
957
- }
958
- },
959
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
960
- "System.Security.AccessControl/5.0.0": {
961
- "dependencies": {
962
- "Microsoft.NETCore.Platforms": "5.0.0",
963
- "System.Security.Principal.Windows": "5.0.0"
964
- }
965
- },
966
- "System.Security.Principal.Windows/5.0.0": {},
967
- "System.Text.Encoding.CodePages/6.0.0": {
968
- "dependencies": {
969
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
970
- }
971
- },
972
- "System.Text.Encodings.Web/8.0.0": {},
973
- "System.Text.Json/8.0.0": {
974
- "dependencies": {
975
- "System.Text.Encodings.Web": "8.0.0"
976
- }
977
- },
978
- "System.Threading.Channels/6.0.0": {},
979
- "System.Threading.RateLimiting/8.0.0": {},
980
- "ZstdSharp.Port/0.7.3": {
981
- "runtime": {
982
- "lib/net7.0/ZstdSharp.dll": {
983
- "assemblyVersion": "0.7.3.0",
984
- "fileVersion": "0.7.3.0"
985
- }
986
- }
987
- },
988
- "Blueprint.Core/1.0.0": {
989
- "dependencies": {
990
- "Microsoft.Extensions.Hosting": "8.0.0",
991
- "MongoDB.Bson": "3.1.0",
992
- "System.IdentityModel.Tokens.Jwt": "8.3.1"
993
- },
994
- "runtime": {
995
- "Blueprint.Core.dll": {}
996
- }
997
- },
998
- "Blueprint.Infra/1.0.0": {
999
- "dependencies": {
1000
- "Blueprint.Core": "1.0.0",
1001
- "Microsoft.EntityFrameworkCore": "8.0.10",
1002
- "Microsoft.Extensions.Hosting": "8.0.0",
1003
- "MongoDB.Driver": "3.1.0",
1004
- "Pomelo.EntityFrameworkCore.MySql": "8.0.2",
1005
- "RabbitMQ.Client": "7.0.0"
1006
- },
1007
- "runtime": {
1008
- "Blueprint.Infra.dll": {}
1009
- }
1010
- }
1011
- }
1012
- },
1013
- "libraries": {
1014
- "Blueprint.API/1.0.0": {
1015
- "type": "project",
1016
- "serviceable": false,
1017
- "sha512": ""
1018
- },
1019
- "AutoMapper/13.0.1": {
1020
- "type": "package",
1021
- "serviceable": true,
1022
- "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==",
1023
- "path": "automapper/13.0.1",
1024
- "hashPath": "automapper.13.0.1.nupkg.sha512"
1025
- },
1026
- "AWSSDK.Core/3.7.400.70": {
1027
- "type": "package",
1028
- "serviceable": true,
1029
- "sha512": "sha512-S0mcK1Bqa8xVh9UU+Rg9VEdjHfD2B75WRtBmh4ANTelUcTThG7T/ujNjxLXhzZQKW2j1V+KHUEViW4+OLB4Vkg==",
1030
- "path": "awssdk.core/3.7.400.70",
1031
- "hashPath": "awssdk.core.3.7.400.70.nupkg.sha512"
1032
- },
1033
- "AWSSDK.Extensions.NETCore.Setup/3.7.301": {
1034
- "type": "package",
1035
- "serviceable": true,
1036
- "sha512": "sha512-hXejqa+G72kVCSmpKlNVWDEqa8KVWOFL/asgoE2mairQOnmTCv6vMxaXjJ0nQaad5/21zTdKDIfDiki5YTne1Q==",
1037
- "path": "awssdk.extensions.netcore.setup/3.7.301",
1038
- "hashPath": "awssdk.extensions.netcore.setup.3.7.301.nupkg.sha512"
1039
- },
1040
- "AWSSDK.S3/3.7.410.12": {
1041
- "type": "package",
1042
- "serviceable": true,
1043
- "sha512": "sha512-ZTMqFLboGilRNnKdSM7+0Jz4GGjE6dlZcQhOHXedMrudXHrFL/8Rlf0cOvsZaHKc5ljVxzauW6gm2Yezqfk8cw==",
1044
- "path": "awssdk.s3/3.7.410.12",
1045
- "hashPath": "awssdk.s3.3.7.410.12.nupkg.sha512"
1046
- },
1047
- "DnsClient/1.6.1": {
1048
- "type": "package",
1049
- "serviceable": true,
1050
- "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
1051
- "path": "dnsclient/1.6.1",
1052
- "hashPath": "dnsclient.1.6.1.nupkg.sha512"
1053
- },
1054
- "Humanizer.Core/2.14.1": {
1055
- "type": "package",
1056
- "serviceable": true,
1057
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
1058
- "path": "humanizer.core/2.14.1",
1059
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
1060
- },
1061
- "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": {
1062
- "type": "package",
1063
- "serviceable": true,
1064
- "sha512": "sha512-rcPXghZCc82IB9U2Px1Ln5Zn3vjV4p83H/Few5T/904hBddjSz03COQ2zOGWBBvdTBY+GciAUJwgBFNWaxLfqw==",
1065
- "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.10",
1066
- "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.10.nupkg.sha512"
1067
- },
1068
- "Microsoft.AspNetCore.Mvc.Versioning/5.1.0": {
1069
- "type": "package",
1070
- "serviceable": true,
1071
- "sha512": "sha512-UX8w9BlCiZpr6Ox4YAve1w0CkI1CAovukGNzKd7v0+5pZc8lzuG5tRovucr1RWIKHs0E/Yx8563CN7KzaB3bpw==",
1072
- "path": "microsoft.aspnetcore.mvc.versioning/5.1.0",
1073
- "hashPath": "microsoft.aspnetcore.mvc.versioning.5.1.0.nupkg.sha512"
1074
- },
1075
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
1076
- "type": "package",
1077
- "serviceable": true,
1078
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
1079
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
1080
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
1081
- },
1082
- "Microsoft.Bcl.Memory/9.0.0": {
1083
- "type": "package",
1084
- "serviceable": true,
1085
- "sha512": "sha512-bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
1086
- "path": "microsoft.bcl.memory/9.0.0",
1087
- "hashPath": "microsoft.bcl.memory.9.0.0.nupkg.sha512"
1088
- },
1089
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
1090
- "type": "package",
1091
- "serviceable": true,
1092
- "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
1093
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
1094
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
1095
- },
1096
- "Microsoft.CodeAnalysis.Common/4.5.0": {
1097
- "type": "package",
1098
- "serviceable": true,
1099
- "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
1100
- "path": "microsoft.codeanalysis.common/4.5.0",
1101
- "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
1102
- },
1103
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
1104
- "type": "package",
1105
- "serviceable": true,
1106
- "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
1107
- "path": "microsoft.codeanalysis.csharp/4.5.0",
1108
- "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
1109
- },
1110
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
1111
- "type": "package",
1112
- "serviceable": true,
1113
- "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
1114
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
1115
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
1116
- },
1117
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
1118
- "type": "package",
1119
- "serviceable": true,
1120
- "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
1121
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
1122
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
1123
- },
1124
- "Microsoft.EntityFrameworkCore/8.0.10": {
1125
- "type": "package",
1126
- "serviceable": true,
1127
- "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
1128
- "path": "microsoft.entityframeworkcore/8.0.10",
1129
- "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512"
1130
- },
1131
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
1132
- "type": "package",
1133
- "serviceable": true,
1134
- "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
1135
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
1136
- "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512"
1137
- },
1138
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
1139
- "type": "package",
1140
- "serviceable": true,
1141
- "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
1142
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
1143
- "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512"
1144
- },
1145
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
1146
- "type": "package",
1147
- "serviceable": true,
1148
- "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
1149
- "path": "microsoft.entityframeworkcore.design/8.0.10",
1150
- "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512"
1151
- },
1152
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
1153
- "type": "package",
1154
- "serviceable": true,
1155
- "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
1156
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
1157
- "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512"
1158
- },
1159
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
1160
- "type": "package",
1161
- "serviceable": true,
1162
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
1163
- "path": "microsoft.extensions.apidescription.server/6.0.5",
1164
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
1165
- },
1166
- "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
1167
- "type": "package",
1168
- "serviceable": true,
1169
- "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
1170
- "path": "microsoft.extensions.caching.abstractions/8.0.0",
1171
- "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
1172
- },
1173
- "Microsoft.Extensions.Caching.Memory/8.0.1": {
1174
- "type": "package",
1175
- "serviceable": true,
1176
- "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
1177
- "path": "microsoft.extensions.caching.memory/8.0.1",
1178
- "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512"
1179
- },
1180
- "Microsoft.Extensions.Configuration/8.0.0": {
1181
- "type": "package",
1182
- "serviceable": true,
1183
- "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
1184
- "path": "microsoft.extensions.configuration/8.0.0",
1185
- "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512"
1186
- },
1187
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
1188
- "type": "package",
1189
- "serviceable": true,
1190
- "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
1191
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
1192
- "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
1193
- },
1194
- "Microsoft.Extensions.Configuration.Binder/8.0.0": {
1195
- "type": "package",
1196
- "serviceable": true,
1197
- "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
1198
- "path": "microsoft.extensions.configuration.binder/8.0.0",
1199
- "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512"
1200
- },
1201
- "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
1202
- "type": "package",
1203
- "serviceable": true,
1204
- "sha512": "sha512-NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
1205
- "path": "microsoft.extensions.configuration.commandline/8.0.0",
1206
- "hashPath": "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512"
1207
- },
1208
- "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
1209
- "type": "package",
1210
- "serviceable": true,
1211
- "sha512": "sha512-plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
1212
- "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
1213
- "hashPath": "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512"
1214
- },
1215
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
1216
- "type": "package",
1217
- "serviceable": true,
1218
- "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
1219
- "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
1220
- "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512"
1221
- },
1222
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
1223
- "type": "package",
1224
- "serviceable": true,
1225
- "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
1226
- "path": "microsoft.extensions.configuration.json/8.0.0",
1227
- "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512"
1228
- },
1229
- "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
1230
- "type": "package",
1231
- "serviceable": true,
1232
- "sha512": "sha512-ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
1233
- "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
1234
- "hashPath": "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512"
1235
- },
1236
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
1237
- "type": "package",
1238
- "serviceable": true,
1239
- "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
1240
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
1241
- "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512"
1242
- },
1243
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
1244
- "type": "package",
1245
- "serviceable": true,
1246
- "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
1247
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
1248
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512"
1249
- },
1250
- "Microsoft.Extensions.DependencyModel/8.0.2": {
1251
- "type": "package",
1252
- "serviceable": true,
1253
- "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==",
1254
- "path": "microsoft.extensions.dependencymodel/8.0.2",
1255
- "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512"
1256
- },
1257
- "Microsoft.Extensions.Diagnostics/8.0.0": {
1258
- "type": "package",
1259
- "serviceable": true,
1260
- "sha512": "sha512-3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
1261
- "path": "microsoft.extensions.diagnostics/8.0.0",
1262
- "hashPath": "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512"
1263
- },
1264
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
1265
- "type": "package",
1266
- "serviceable": true,
1267
- "sha512": "sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
1268
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
1269
- "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512"
1270
- },
1271
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
1272
- "type": "package",
1273
- "serviceable": true,
1274
- "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
1275
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
1276
- "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
1277
- },
1278
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
1279
- "type": "package",
1280
- "serviceable": true,
1281
- "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
1282
- "path": "microsoft.extensions.fileproviders.physical/8.0.0",
1283
- "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512"
1284
- },
1285
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
1286
- "type": "package",
1287
- "serviceable": true,
1288
- "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
1289
- "path": "microsoft.extensions.filesystemglobbing/8.0.0",
1290
- "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512"
1291
- },
1292
- "Microsoft.Extensions.Hosting/8.0.0": {
1293
- "type": "package",
1294
- "serviceable": true,
1295
- "sha512": "sha512-ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
1296
- "path": "microsoft.extensions.hosting/8.0.0",
1297
- "hashPath": "microsoft.extensions.hosting.8.0.0.nupkg.sha512"
1298
- },
1299
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
1300
- "type": "package",
1301
- "serviceable": true,
1302
- "sha512": "sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
1303
- "path": "microsoft.extensions.hosting.abstractions/8.0.0",
1304
- "hashPath": "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512"
1305
- },
1306
- "Microsoft.Extensions.Logging/8.0.1": {
1307
- "type": "package",
1308
- "serviceable": true,
1309
- "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
1310
- "path": "microsoft.extensions.logging/8.0.1",
1311
- "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512"
1312
- },
1313
- "Microsoft.Extensions.Logging.Abstractions/8.0.2": {
1314
- "type": "package",
1315
- "serviceable": true,
1316
- "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==",
1317
- "path": "microsoft.extensions.logging.abstractions/8.0.2",
1318
- "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512"
1319
- },
1320
- "Microsoft.Extensions.Logging.Configuration/8.0.0": {
1321
- "type": "package",
1322
- "serviceable": true,
1323
- "sha512": "sha512-ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
1324
- "path": "microsoft.extensions.logging.configuration/8.0.0",
1325
- "hashPath": "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512"
1326
- },
1327
- "Microsoft.Extensions.Logging.Console/8.0.0": {
1328
- "type": "package",
1329
- "serviceable": true,
1330
- "sha512": "sha512-e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
1331
- "path": "microsoft.extensions.logging.console/8.0.0",
1332
- "hashPath": "microsoft.extensions.logging.console.8.0.0.nupkg.sha512"
1333
- },
1334
- "Microsoft.Extensions.Logging.Debug/8.0.0": {
1335
- "type": "package",
1336
- "serviceable": true,
1337
- "sha512": "sha512-dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
1338
- "path": "microsoft.extensions.logging.debug/8.0.0",
1339
- "hashPath": "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512"
1340
- },
1341
- "Microsoft.Extensions.Logging.EventLog/8.0.0": {
1342
- "type": "package",
1343
- "serviceable": true,
1344
- "sha512": "sha512-3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
1345
- "path": "microsoft.extensions.logging.eventlog/8.0.0",
1346
- "hashPath": "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512"
1347
- },
1348
- "Microsoft.Extensions.Logging.EventSource/8.0.0": {
1349
- "type": "package",
1350
- "serviceable": true,
1351
- "sha512": "sha512-oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
1352
- "path": "microsoft.extensions.logging.eventsource/8.0.0",
1353
- "hashPath": "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512"
1354
- },
1355
- "Microsoft.Extensions.Options/8.0.2": {
1356
- "type": "package",
1357
- "serviceable": true,
1358
- "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==",
1359
- "path": "microsoft.extensions.options/8.0.2",
1360
- "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512"
1361
- },
1362
- "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
1363
- "type": "package",
1364
- "serviceable": true,
1365
- "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
1366
- "path": "microsoft.extensions.options.configurationextensions/8.0.0",
1367
- "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512"
1368
- },
1369
- "Microsoft.Extensions.Primitives/8.0.0": {
1370
- "type": "package",
1371
- "serviceable": true,
1372
- "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
1373
- "path": "microsoft.extensions.primitives/8.0.0",
1374
- "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
1375
- },
1376
- "Microsoft.IdentityModel.Abstractions/8.3.1": {
1377
- "type": "package",
1378
- "serviceable": true,
1379
- "sha512": "sha512-oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==",
1380
- "path": "microsoft.identitymodel.abstractions/8.3.1",
1381
- "hashPath": "microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512"
1382
- },
1383
- "Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
1384
- "type": "package",
1385
- "serviceable": true,
1386
- "sha512": "sha512-cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==",
1387
- "path": "microsoft.identitymodel.jsonwebtokens/8.3.1",
1388
- "hashPath": "microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512"
1389
- },
1390
- "Microsoft.IdentityModel.Logging/8.3.1": {
1391
- "type": "package",
1392
- "serviceable": true,
1393
- "sha512": "sha512-XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==",
1394
- "path": "microsoft.identitymodel.logging/8.3.1",
1395
- "hashPath": "microsoft.identitymodel.logging.8.3.1.nupkg.sha512"
1396
- },
1397
- "Microsoft.IdentityModel.Protocols/7.1.2": {
1398
- "type": "package",
1399
- "serviceable": true,
1400
- "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
1401
- "path": "microsoft.identitymodel.protocols/7.1.2",
1402
- "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512"
1403
- },
1404
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
1405
- "type": "package",
1406
- "serviceable": true,
1407
- "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
1408
- "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
1409
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512"
1410
- },
1411
- "Microsoft.IdentityModel.Tokens/8.3.1": {
1412
- "type": "package",
1413
- "serviceable": true,
1414
- "sha512": "sha512-77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==",
1415
- "path": "microsoft.identitymodel.tokens/8.3.1",
1416
- "hashPath": "microsoft.identitymodel.tokens.8.3.1.nupkg.sha512"
1417
- },
1418
- "Microsoft.NETCore.Platforms/5.0.0": {
1419
- "type": "package",
1420
- "serviceable": true,
1421
- "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
1422
- "path": "microsoft.netcore.platforms/5.0.0",
1423
- "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
1424
- },
1425
- "Microsoft.OpenApi/1.2.3": {
1426
- "type": "package",
1427
- "serviceable": true,
1428
- "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
1429
- "path": "microsoft.openapi/1.2.3",
1430
- "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
1431
- },
1432
- "Microsoft.Win32.Registry/5.0.0": {
1433
- "type": "package",
1434
- "serviceable": true,
1435
- "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
1436
- "path": "microsoft.win32.registry/5.0.0",
1437
- "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
1438
- },
1439
- "MongoDB.Bson/3.1.0": {
1440
- "type": "package",
1441
- "serviceable": true,
1442
- "sha512": "sha512-3dhaZhz18B5vUoEP13o2j8A6zQfkHdZhwBvLZEjDJum4BTLLv1/Z8bt25UQEtpqvYwLgde4R6ekWZ7XAYUMxuw==",
1443
- "path": "mongodb.bson/3.1.0",
1444
- "hashPath": "mongodb.bson.3.1.0.nupkg.sha512"
1445
- },
1446
- "MongoDB.Driver/3.1.0": {
1447
- "type": "package",
1448
- "serviceable": true,
1449
- "sha512": "sha512-+O7lKaIl7VUHptE0hqTd7UY1G5KDp/o8S4upG7YL4uChMNKD/U6tz9i17nMGHaD/L2AiPLgaJcaDe2XACsegGA==",
1450
- "path": "mongodb.driver/3.1.0",
1451
- "hashPath": "mongodb.driver.3.1.0.nupkg.sha512"
1452
- },
1453
- "Mono.TextTemplating/2.2.1": {
1454
- "type": "package",
1455
- "serviceable": true,
1456
- "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
1457
- "path": "mono.texttemplating/2.2.1",
1458
- "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
1459
- },
1460
- "MySqlConnector/2.3.5": {
1461
- "type": "package",
1462
- "serviceable": true,
1463
- "sha512": "sha512-AmEfUPkFl+Ev6jJ8Dhns3CYHBfD12RHzGYWuLt6DfG6/af6YvOMyPz74ZPPjBYQGRJkumD2Z48Kqm8s5DJuhLA==",
1464
- "path": "mysqlconnector/2.3.5",
1465
- "hashPath": "mysqlconnector.2.3.5.nupkg.sha512"
1466
- },
1467
- "Pomelo.EntityFrameworkCore.MySql/8.0.2": {
1468
- "type": "package",
1469
- "serviceable": true,
1470
- "sha512": "sha512-XjnlcxVBLnEMbyEc5cZzgZeDyLvAniACZQ04W1slWN0f4rmfNzl98gEMvHnFH0fMDF06z9MmgGi/Sr7hJ+BVnw==",
1471
- "path": "pomelo.entityframeworkcore.mysql/8.0.2",
1472
- "hashPath": "pomelo.entityframeworkcore.mysql.8.0.2.nupkg.sha512"
1473
- },
1474
- "RabbitMQ.Client/7.0.0": {
1475
- "type": "package",
1476
- "serviceable": true,
1477
- "sha512": "sha512-8YJz22mOSMtkbIVuVSz2HbJwbpKwRoXQ1uqbczDUt1w1Ds8dxFs6dkV/oZ8AlTmkErZjtQelHv+oBu52ud00WA==",
1478
- "path": "rabbitmq.client/7.0.0",
1479
- "hashPath": "rabbitmq.client.7.0.0.nupkg.sha512"
1480
- },
1481
- "SharpCompress/0.30.1": {
1482
- "type": "package",
1483
- "serviceable": true,
1484
- "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
1485
- "path": "sharpcompress/0.30.1",
1486
- "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
1487
- },
1488
- "Snappier/1.0.0": {
1489
- "type": "package",
1490
- "serviceable": true,
1491
- "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
1492
- "path": "snappier/1.0.0",
1493
- "hashPath": "snappier.1.0.0.nupkg.sha512"
1494
- },
1495
- "Swashbuckle.AspNetCore/6.4.0": {
1496
- "type": "package",
1497
- "serviceable": true,
1498
- "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
1499
- "path": "swashbuckle.aspnetcore/6.4.0",
1500
- "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512"
1501
- },
1502
- "Swashbuckle.AspNetCore.Swagger/6.4.0": {
1503
- "type": "package",
1504
- "serviceable": true,
1505
- "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
1506
- "path": "swashbuckle.aspnetcore.swagger/6.4.0",
1507
- "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512"
1508
- },
1509
- "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
1510
- "type": "package",
1511
- "serviceable": true,
1512
- "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
1513
- "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
1514
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512"
1515
- },
1516
- "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
1517
- "type": "package",
1518
- "serviceable": true,
1519
- "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
1520
- "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
1521
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512"
1522
- },
1523
- "System.Buffers/4.5.1": {
1524
- "type": "package",
1525
- "serviceable": true,
1526
- "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
1527
- "path": "system.buffers/4.5.1",
1528
- "hashPath": "system.buffers.4.5.1.nupkg.sha512"
1529
- },
1530
- "System.CodeDom/4.4.0": {
1531
- "type": "package",
1532
- "serviceable": true,
1533
- "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
1534
- "path": "system.codedom/4.4.0",
1535
- "hashPath": "system.codedom.4.4.0.nupkg.sha512"
1536
- },
1537
- "System.Collections.Immutable/6.0.0": {
1538
- "type": "package",
1539
- "serviceable": true,
1540
- "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
1541
- "path": "system.collections.immutable/6.0.0",
1542
- "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
1543
- },
1544
- "System.Composition/6.0.0": {
1545
- "type": "package",
1546
- "serviceable": true,
1547
- "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
1548
- "path": "system.composition/6.0.0",
1549
- "hashPath": "system.composition.6.0.0.nupkg.sha512"
1550
- },
1551
- "System.Composition.AttributedModel/6.0.0": {
1552
- "type": "package",
1553
- "serviceable": true,
1554
- "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
1555
- "path": "system.composition.attributedmodel/6.0.0",
1556
- "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
1557
- },
1558
- "System.Composition.Convention/6.0.0": {
1559
- "type": "package",
1560
- "serviceable": true,
1561
- "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
1562
- "path": "system.composition.convention/6.0.0",
1563
- "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
1564
- },
1565
- "System.Composition.Hosting/6.0.0": {
1566
- "type": "package",
1567
- "serviceable": true,
1568
- "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
1569
- "path": "system.composition.hosting/6.0.0",
1570
- "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
1571
- },
1572
- "System.Composition.Runtime/6.0.0": {
1573
- "type": "package",
1574
- "serviceable": true,
1575
- "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
1576
- "path": "system.composition.runtime/6.0.0",
1577
- "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
1578
- },
1579
- "System.Composition.TypedParts/6.0.0": {
1580
- "type": "package",
1581
- "serviceable": true,
1582
- "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
1583
- "path": "system.composition.typedparts/6.0.0",
1584
- "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
1585
- },
1586
- "System.Diagnostics.DiagnosticSource/8.0.0": {
1587
- "type": "package",
1588
- "serviceable": true,
1589
- "sha512": "sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
1590
- "path": "system.diagnostics.diagnosticsource/8.0.0",
1591
- "hashPath": "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512"
1592
- },
1593
- "System.Diagnostics.EventLog/8.0.0": {
1594
- "type": "package",
1595
- "serviceable": true,
1596
- "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
1597
- "path": "system.diagnostics.eventlog/8.0.0",
1598
- "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
1599
- },
1600
- "System.IdentityModel.Tokens.Jwt/8.3.1": {
1601
- "type": "package",
1602
- "serviceable": true,
1603
- "sha512": "sha512-SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==",
1604
- "path": "system.identitymodel.tokens.jwt/8.3.1",
1605
- "hashPath": "system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512"
1606
- },
1607
- "System.IO.Pipelines/8.0.0": {
1608
- "type": "package",
1609
- "serviceable": true,
1610
- "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
1611
- "path": "system.io.pipelines/8.0.0",
1612
- "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
1613
- },
1614
- "System.Memory/4.5.5": {
1615
- "type": "package",
1616
- "serviceable": true,
1617
- "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
1618
- "path": "system.memory/4.5.5",
1619
- "hashPath": "system.memory.4.5.5.nupkg.sha512"
1620
- },
1621
- "System.Reflection.Metadata/6.0.1": {
1622
- "type": "package",
1623
- "serviceable": true,
1624
- "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
1625
- "path": "system.reflection.metadata/6.0.1",
1626
- "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512"
1627
- },
1628
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
1629
- "type": "package",
1630
- "serviceable": true,
1631
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
1632
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
1633
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
1634
- },
1635
- "System.Security.AccessControl/5.0.0": {
1636
- "type": "package",
1637
- "serviceable": true,
1638
- "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
1639
- "path": "system.security.accesscontrol/5.0.0",
1640
- "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
1641
- },
1642
- "System.Security.Principal.Windows/5.0.0": {
1643
- "type": "package",
1644
- "serviceable": true,
1645
- "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
1646
- "path": "system.security.principal.windows/5.0.0",
1647
- "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
1648
- },
1649
- "System.Text.Encoding.CodePages/6.0.0": {
1650
- "type": "package",
1651
- "serviceable": true,
1652
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
1653
- "path": "system.text.encoding.codepages/6.0.0",
1654
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
1655
- },
1656
- "System.Text.Encodings.Web/8.0.0": {
1657
- "type": "package",
1658
- "serviceable": true,
1659
- "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
1660
- "path": "system.text.encodings.web/8.0.0",
1661
- "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
1662
- },
1663
- "System.Text.Json/8.0.0": {
1664
- "type": "package",
1665
- "serviceable": true,
1666
- "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
1667
- "path": "system.text.json/8.0.0",
1668
- "hashPath": "system.text.json.8.0.0.nupkg.sha512"
1669
- },
1670
- "System.Threading.Channels/6.0.0": {
1671
- "type": "package",
1672
- "serviceable": true,
1673
- "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
1674
- "path": "system.threading.channels/6.0.0",
1675
- "hashPath": "system.threading.channels.6.0.0.nupkg.sha512"
1676
- },
1677
- "System.Threading.RateLimiting/8.0.0": {
1678
- "type": "package",
1679
- "serviceable": true,
1680
- "sha512": "sha512-7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==",
1681
- "path": "system.threading.ratelimiting/8.0.0",
1682
- "hashPath": "system.threading.ratelimiting.8.0.0.nupkg.sha512"
1683
- },
1684
- "ZstdSharp.Port/0.7.3": {
1685
- "type": "package",
1686
- "serviceable": true,
1687
- "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==",
1688
- "path": "zstdsharp.port/0.7.3",
1689
- "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512"
1690
- },
1691
- "Blueprint.Core/1.0.0": {
1692
- "type": "project",
1693
- "serviceable": false,
1694
- "sha512": ""
1695
- },
1696
- "Blueprint.Infra/1.0.0": {
1697
- "type": "project",
1698
- "serviceable": false,
1699
- "sha512": ""
1700
- }
1701
- }
1702
- }