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