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,43 +1,40 @@
1
- using Microsoft.AspNetCore.Authorization;
2
- using Microsoft.AspNetCore.Mvc;
3
- using System.Diagnostics;
4
-
5
- namespace Blueprint.API.Controllers
6
- {
7
- /// <summary>
8
- /// Version controller
9
- /// </summary>
10
- [Route("rest/v1.0/version")]
11
- [ApiVersion("1.0")]
12
- [Produces("application/json")]
13
- [ApiController]
14
- public class VersionController : Controller
15
- {
16
- private ILogger _logger;
17
-
18
- public VersionController(ILogger<VersionController> logger)
19
- {
20
- _logger = logger;
21
- }
22
-
23
- /// <summary>
24
- /// Get version
25
- /// </summary>
26
- /// <returns></returns>
27
- [HttpGet]
28
- [Authorize(Roles = "User")]
29
- [ProducesResponseType(StatusCodes.Status200OK)]
30
- public string GetVersion()
31
- {
32
- _logger.LogInformation($"Start getting version");
33
- var stopwatch = Stopwatch.StartNew();
34
-
35
- string version = "1";
36
-
37
- stopwatch.Stop();
38
- _logger.LogInformation($"Getting version done in {stopwatch.ElapsedMilliseconds}");
39
-
40
- return version;
41
- }
42
- }
43
- }
1
+ using Microsoft.AspNetCore.Mvc;
2
+ using System.Diagnostics;
3
+
4
+ namespace Blueprint.API.Controllers
5
+ {
6
+ /// <summary>
7
+ /// Version controller
8
+ /// </summary>
9
+ [Route("rest/v{version:apiVersion}/version")]
10
+ [Produces("application/json")]
11
+ [ApiController]
12
+ public class VersionController : Controller
13
+ {
14
+ private ILogger _logger;
15
+
16
+ public VersionController(ILogger<VersionController> logger)
17
+ {
18
+ _logger = logger;
19
+ }
20
+
21
+ /// <summary>
22
+ /// Get version
23
+ /// </summary>
24
+ /// <returns></returns>
25
+ [HttpGet]
26
+ [ProducesResponseType(StatusCodes.Status200OK)]
27
+ public string GetVersion()
28
+ {
29
+ _logger.LogInformation($"Start getting version");
30
+ var stopwatch = Stopwatch.StartNew();
31
+
32
+ string version = "1";
33
+
34
+ stopwatch.Stop();
35
+ _logger.LogInformation($"Getting version done in {stopwatch.ElapsedMilliseconds}");
36
+
37
+ return version;
38
+ }
39
+ }
40
+ }
@@ -1,33 +1,33 @@
1
- using Microsoft.AspNetCore.Mvc;
2
-
3
- namespace Blueprint.API.Controllers
4
- {
5
- [ApiController]
6
- [Route("[controller]")]
7
- public class WeatherForecastController : ControllerBase
8
- {
9
- private static readonly string[] Summaries = new[]
10
- {
11
- "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
12
- };
13
-
14
- private readonly ILogger<WeatherForecastController> _logger;
15
-
16
- public WeatherForecastController(ILogger<WeatherForecastController> logger)
17
- {
18
- _logger = logger;
19
- }
20
-
21
- [HttpGet(Name = "GetWeatherForecast")]
22
- public IEnumerable<WeatherForecast> Get()
23
- {
24
- return Enumerable.Range(1, 5).Select(index => new WeatherForecast
25
- {
26
- Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
27
- TemperatureC = Random.Shared.Next(-20, 55),
28
- Summary = Summaries[Random.Shared.Next(Summaries.Length)]
29
- })
30
- .ToArray();
31
- }
32
- }
33
- }
1
+ using Microsoft.AspNetCore.Mvc;
2
+
3
+ namespace Blueprint.API.Controllers
4
+ {
5
+ [ApiController]
6
+ [Route("[controller]")]
7
+ public class WeatherForecastController : ControllerBase
8
+ {
9
+ private static readonly string[] Summaries = new[]
10
+ {
11
+ "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
12
+ };
13
+
14
+ private readonly ILogger<WeatherForecastController> _logger;
15
+
16
+ public WeatherForecastController(ILogger<WeatherForecastController> logger)
17
+ {
18
+ _logger = logger;
19
+ }
20
+
21
+ [HttpGet(Name = "GetWeatherForecast")]
22
+ public IEnumerable<WeatherForecast> Get()
23
+ {
24
+ return Enumerable.Range(1, 5).Select(index => new WeatherForecast
25
+ {
26
+ Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
27
+ TemperatureC = Random.Shared.Next(-20, 55),
28
+ Summary = Summaries[Random.Shared.Next(Summaries.Length)]
29
+ })
30
+ .ToArray();
31
+ }
32
+ }
33
+ }
@@ -1,28 +1,28 @@
1
- using AutoMapper;
2
- using Blueprint.Core.Entities;
3
- using Blueprint.Core.Models;
4
- using Template.Core.Dtos.Requests;
5
- using Template.Core.Dtos.Responses;
6
-
7
- namespace Blueprint.API.Mappers
8
- {
9
- /// <summary>
10
- /// DtoMappingProfile
11
- /// </summary>
12
- public class DtoMappingProfile : Profile
13
- {
14
- /// <summary>
15
- /// Constructor
16
- /// </summary>
17
- public DtoMappingProfile()
18
- {
19
- CreateMap<User, UserRequestDto>().ReverseMap();
20
-
21
- CreateMap<PagerData<User>, PagerData<UserResponseDto>>().ReverseMap();
22
-
23
- CreateMap<User, UserResponseDto>()
24
- .ForMember(dest => dest.Role, opt => opt.MapFrom(src => src.Role.ToString()))
25
- .ReverseMap();
26
- }
27
- }
28
- }
1
+ using AutoMapper;
2
+ using Blueprint.Core.Entities;
3
+ using Blueprint.Core.Models;
4
+ using Template.Core.Dtos.Requests;
5
+ using Template.Core.Dtos.Responses;
6
+
7
+ namespace Blueprint.API.Mappers
8
+ {
9
+ /// <summary>
10
+ /// DtoMappingProfile
11
+ /// </summary>
12
+ public class DtoMappingProfile : Profile
13
+ {
14
+ /// <summary>
15
+ /// Constructor
16
+ /// </summary>
17
+ public DtoMappingProfile()
18
+ {
19
+ CreateMap<User, UserRequestDto>().ReverseMap();
20
+
21
+ CreateMap<PagerData<User>, PagerData<UserResponseDto>>().ReverseMap();
22
+
23
+ CreateMap<User, UserResponseDto>()
24
+ .ForMember(dest => dest.Role, opt => opt.MapFrom(src => src.Role.ToString()))
25
+ .ReverseMap();
26
+ }
27
+ }
28
+ }
@@ -1,176 +1,213 @@
1
- using Microsoft.AspNetCore.Authentication.JwtBearer;
2
- using Microsoft.EntityFrameworkCore;
3
- using Microsoft.IdentityModel.Tokens;
4
- using Blueprint.Infra.Database;
5
- using Blueprint.API.Mappers;
6
- using Microsoft.AspNetCore.Mvc.Versioning;
7
- using Microsoft.AspNetCore.Mvc;
8
- using Amazon.S3;
9
- using Template.Core.Interfaces.API;
10
- using Template.Core.Services;
11
- using Template.Core.Interfaces.SPI;
12
- using Template.Infra.Services;
13
- using Blueprint.Core.Interfaces.API;
14
- using Blueprint.Core.Interfaces.SPI;
15
- using Blueprint.Infra.Services;
16
- using MongoDB.Driver;
17
- using Blueprint.Core.Services;
18
- using Blueprint.API.Services;
19
- using System.Text.Json.Serialization;
20
- using System.Text;
21
-
22
- var builder = WebApplication.CreateBuilder(args);
23
-
24
- ConfigureThirdPartyServices();
25
- ConfigureServices();
26
- ConfigureSwagger();
27
- ConfigureDatabase();
28
-
29
- var app = builder.Build();
30
-
31
- ConfigureMiddleware(app);
32
- ApplyMigrations(app);
33
-
34
- app.Run();
35
-
36
- void ConfigureMiddleware(WebApplication app)
37
- {
38
- // Configure the HTTP request pipeline.
39
- if (app.Environment.IsDevelopment())
40
- {
41
- app.UseSwagger();
42
- app.UseSwaggerUI();
43
- }
44
- app.UseCors("AllowAll");
45
- app.UseHttpsRedirection();
46
- app.UseAuthentication();
47
- app.UseAuthorization();
48
- app.MapControllers();
49
- }
50
-
51
- void ConfigureSwagger()
52
- {
53
- // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
54
- builder.Services.AddEndpointsApiExplorer();
55
- builder.Services.AddSwaggerGen();
56
- }
57
-
58
- void ConfigureServices()
59
- {
60
- // Add services to the container.
61
- builder.Services.AddCors(options =>
62
- {
63
- options.AddPolicy("AllowAll", policy =>
64
- {
65
- policy.AllowAnyOrigin() // Allow requests from any origin
66
- .AllowAnyHeader() // Allow any headers
67
- .AllowAnyMethod() // Allow any HTTP methods
68
- .WithExposedHeaders("X-WP-Total");
69
- });
70
- });
71
- //Add Authen
72
- builder.Services.AddAuthentication(options =>
73
- {
74
- options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
75
- options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
76
- })
77
- .AddJwtBearer(options =>
78
- {
79
- options.RequireHttpsMetadata = false;
80
- options.SaveToken = true;
81
- options.TokenValidationParameters = new TokenValidationParameters
82
- {
83
- ValidateIssuerSigningKey = false,
84
- ValidateIssuer = false,
85
- ValidateAudience = false,
86
- ValidateLifetime = false, // Ensure token expiration is checked
87
- ClockSkew = TimeSpan.Zero, // Optional: Prevents automatic expiration buffer
88
- RoleClaimType = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role",
89
- IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Secret"]!))
90
- };
91
- });
92
- builder.Services.AddAuthorization(options =>
93
- {
94
- options.AddPolicy("AdminPolicy", policy => policy.RequireRole("Admin"));
95
- options.AddPolicy("UserPolicy", policy => policy.RequireRole("User"));
96
- });
97
-
98
- // Add services to the container.
99
- builder.Services.AddControllers()
100
- .AddJsonOptions(options =>
101
- {
102
- options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
103
- });
104
-
105
- // Register generic services
106
- builder.Services.AddScoped(typeof(IItemService<>), typeof(ItemService<>));
107
- builder.Services.AddScoped(typeof(IRepositoryFactory<>), typeof(RepositoryFactory<>));
108
- builder.Services.AddScoped(typeof(IItemInfra<>), typeof(MySQLItemInfra<>));
109
- builder.Services.AddScoped(typeof(IItemInfra<>), typeof(MongoItemInfra<>));
110
-
111
- // Register other services
112
- builder.Services.AddScoped<IUserInfra, MongoUserInfra>();
113
- builder.Services.AddScoped<IUserInfra, MySQLUserInfra>();
114
-
115
- builder.Services.AddScoped<IUserService, UserService>();
116
- //Configure settings
117
- }
118
-
119
- void ConfigureDatabase()
120
- {
121
- //Register for mySQL
122
- string? mySQLConnectionString = builder.Configuration.GetConnectionString("MySQL");
123
- if (!string.IsNullOrEmpty(mySQLConnectionString))
124
- {
125
- builder.Services.AddDbContext<MyDbContext>(options =>
126
- options.UseMySql(mySQLConnectionString, Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(mySQLConnectionString))
127
- );
128
- };
129
-
130
- //Register for Mongo
131
- string? mongoConnectionString = builder.Configuration.GetConnectionString("MongoDb");
132
- string? databaseName = builder.Configuration["Database:Name"];
133
- if (!string.IsNullOrEmpty(mongoConnectionString) && !string.IsNullOrEmpty(databaseName))
134
- {
135
- builder.Services.AddSingleton<IMongoClient>(new MongoClient(mongoConnectionString));
136
- builder.Services.AddScoped(sp =>
137
- {
138
- var client = sp.GetRequiredService<IMongoClient>();
139
- return client.GetDatabase(databaseName);
140
- });
141
- }
142
- }
143
-
144
- void ApplyMigrations(WebApplication app)
145
- {
146
- using (var scope = app.Services.CreateScope())
147
- {
148
- var dbContext = scope.ServiceProvider.GetRequiredService<MyDbContext>();
149
- string? databaseType = builder.Configuration["Database:Type"];
150
- if (!string.IsNullOrEmpty(databaseType)
151
- && databaseType.Equals("MySQL", StringComparison.OrdinalIgnoreCase))
152
- {
153
- // Apply migrations if the database type is MySQL
154
- dbContext.Database.Migrate();
155
- }
156
- }
157
- }
158
-
159
- void ConfigureThirdPartyServices()
160
- {
161
- builder.Services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
162
- builder.Services.AddAutoMapper(typeof(DtoMappingProfile).Assembly);
163
- builder.Services.AddApiVersioning(opt =>
164
- {
165
- opt.DefaultApiVersion = new ApiVersion(1, 0);
166
- opt.AssumeDefaultVersionWhenUnspecified = true;
167
- opt.ReportApiVersions = true;
168
- opt.ApiVersionReader = ApiVersionReader.Combine(new UrlSegmentApiVersionReader());
169
- });
170
- builder.Services.AddAWSService<IAmazonS3>();
171
-
172
- //Rabbit MQ
173
- builder.Services.AddSingleton<IRabbitMqService, RabbitMqService>();
174
- builder.Services.AddSingleton<RabbitMqConsumerService>();
175
- builder.Services.AddHostedService(provider => provider.GetRequiredService<RabbitMqConsumerService>());
176
- }
1
+ using Microsoft.AspNetCore.Authentication.JwtBearer;
2
+ using Microsoft.EntityFrameworkCore;
3
+ using Microsoft.IdentityModel.Tokens;
4
+ using Blueprint.Infra.Database;
5
+ using Blueprint.API.Mappers;
6
+ using Microsoft.AspNetCore.Mvc.Versioning;
7
+ using Microsoft.AspNetCore.Mvc;
8
+ using Amazon.S3;
9
+ using Template.Core.Interfaces.API;
10
+ using Template.Core.Services;
11
+ using Template.Core.Interfaces.SPI;
12
+ using Template.Infra.Services;
13
+ using Blueprint.Core.Interfaces.API;
14
+ using Blueprint.Core.Interfaces.SPI;
15
+ using Blueprint.Infra.Services;
16
+ using MongoDB.Driver;
17
+ using Blueprint.API.Services;
18
+ using System.Text.Json.Serialization;
19
+ using System.Text;
20
+ using Blueprint.Core.Services;
21
+ using Amazon.SimpleSystemsManagement.Model;
22
+ using Amazon.SimpleSystemsManagement;
23
+
24
+ var builder = WebApplication.CreateBuilder(args);
25
+
26
+ // Load AWS SSM configuration before building the app
27
+ LoadConfiguration(builder);
28
+
29
+ ConfigureThirdPartyServices();
30
+ ConfigureServices();
31
+ ConfigureSwagger();
32
+ ConfigureDatabase();
33
+
34
+ var app = builder.Build();
35
+
36
+ ConfigureMiddleware(app);
37
+ ApplyMigrations(app);
38
+
39
+ app.Run();
40
+
41
+ void ConfigureMiddleware(WebApplication app)
42
+ {
43
+ // Configure the HTTP request pipeline.
44
+ if (app.Environment.IsDevelopment() || app.Environment.IsStaging())
45
+ {
46
+ app.UseSwagger();
47
+ app.UseSwaggerUI();
48
+ }
49
+ app.UseCors("AllowAll");
50
+ app.UseHttpsRedirection();
51
+ app.UseAuthentication();
52
+ app.UseAuthorization();
53
+ app.MapControllers();
54
+ }
55
+
56
+ void ConfigureSwagger()
57
+ {
58
+ // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
59
+ builder.Services.AddEndpointsApiExplorer();
60
+ builder.Services.AddSwaggerGen();
61
+ }
62
+
63
+ void ConfigureServices()
64
+ {
65
+ // Add CORS
66
+ builder.Services.AddCors(options =>
67
+ {
68
+ options.AddPolicy("AllowAll", policy =>
69
+ {
70
+ policy.AllowAnyOrigin() // Allow requests from any origin
71
+ .AllowAnyHeader() // Allow any headers
72
+ .AllowAnyMethod() // Allow any HTTP methods
73
+ .WithExposedHeaders("X-WP-Total");
74
+ });
75
+ });
76
+
77
+ //Add Authen
78
+ builder.Services.AddAuthentication(options =>
79
+ {
80
+ options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
81
+ options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
82
+ })
83
+ .AddJwtBearer(options =>
84
+ {
85
+ options.RequireHttpsMetadata = false;
86
+ options.SaveToken = true;
87
+ options.TokenValidationParameters = new TokenValidationParameters
88
+ {
89
+ ValidateIssuerSigningKey = false,
90
+ ValidateIssuer = false,
91
+ ValidateAudience = false,
92
+ ValidateLifetime = false, // Ensure token expiration is checked
93
+ ClockSkew = TimeSpan.Zero, // Optional: Prevents automatic expiration buffer
94
+ RoleClaimType = "http://schemas.microsoft.com/ws/2008/06/identity/claims/role",
95
+ IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["Jwt:Secret"]!))
96
+ };
97
+ });
98
+ builder.Services.AddAuthorization(options =>
99
+ {
100
+ options.AddPolicy("AdminPolicy", policy => policy.RequireRole("Admin"));
101
+ options.AddPolicy("UserPolicy", policy => policy.RequireRole("User"));
102
+ });
103
+
104
+ // Add services to the container.
105
+ builder.Services.AddControllers()
106
+ .AddJsonOptions(options =>
107
+ {
108
+ options.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
109
+ });
110
+
111
+ // Register generic services
112
+ builder.Services.AddScoped(typeof(IItemService<>), typeof(ItemService<>));
113
+ builder.Services.AddScoped(typeof(IRepositoryFactory<>), typeof(RepositoryFactory<>));
114
+ builder.Services.AddScoped(typeof(IItemInfra<>), typeof(MySQLItemInfra<>));
115
+ builder.Services.AddScoped(typeof(IItemInfra<>), typeof(MongoItemInfra<>));
116
+
117
+ // Register other services
118
+ builder.Services.AddScoped<IUserInfra, MongoUserInfra>();
119
+ builder.Services.AddScoped<IUserInfra, MySQLUserInfra>();
120
+
121
+ builder.Services.AddScoped<IUserService, UserService>();
122
+ }
123
+
124
+ void ConfigureDatabase()
125
+ {
126
+ //Register for mySQL
127
+ string? mySQLConnectionString = builder.Configuration.GetConnectionString("MySQL");
128
+ if (!string.IsNullOrEmpty(mySQLConnectionString))
129
+ {
130
+ builder.Services.AddDbContext<MyDbContext>(options =>
131
+ options.UseMySql(mySQLConnectionString, Microsoft.EntityFrameworkCore.ServerVersion.AutoDetect(mySQLConnectionString))
132
+ );
133
+ };
134
+
135
+ //Register for Mongo
136
+ string? mongoConnectionString = builder.Configuration.GetConnectionString("MongoDb");
137
+ string? databaseName = builder.Configuration["Database:Name"];
138
+ if (!string.IsNullOrEmpty(mongoConnectionString) && !string.IsNullOrEmpty(databaseName))
139
+ {
140
+ builder.Services.AddSingleton<IMongoClient>(new MongoClient(mongoConnectionString));
141
+ builder.Services.AddScoped(sp =>
142
+ {
143
+ var client = sp.GetRequiredService<IMongoClient>();
144
+ return client.GetDatabase(databaseName);
145
+ });
146
+ }
147
+ }
148
+
149
+ void ApplyMigrations(WebApplication app)
150
+ {
151
+ using (var scope = app.Services.CreateScope())
152
+ {
153
+ var dbContext = scope.ServiceProvider.GetRequiredService<MyDbContext>();
154
+ string? databaseType = builder.Configuration["Database:Type"];
155
+ if (!string.IsNullOrEmpty(databaseType)
156
+ && databaseType.Equals("MySQL", StringComparison.OrdinalIgnoreCase))
157
+ {
158
+ // Apply migrations if the database type is MySQL
159
+ dbContext.Database.Migrate();
160
+ }
161
+ }
162
+ }
163
+
164
+ void ConfigureThirdPartyServices()
165
+ {
166
+ builder.Services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
167
+ builder.Services.AddAutoMapper(typeof(DtoMappingProfile).Assembly);
168
+ builder.Services.AddApiVersioning(opt =>
169
+ {
170
+ opt.DefaultApiVersion = new ApiVersion(1, 0);
171
+ opt.AssumeDefaultVersionWhenUnspecified = true;
172
+ opt.ReportApiVersions = true;
173
+ opt.ApiVersionReader = ApiVersionReader.Combine(new UrlSegmentApiVersionReader());
174
+ });
175
+ builder.Services.AddAWSService<IAmazonS3>();
176
+
177
+ //Rabbit MQ
178
+ builder.Services.AddSingleton<IRabbitMqService, RabbitMqService>();
179
+ builder.Services.AddSingleton<RabbitMqConsumerService>();
180
+ builder.Services.AddHostedService(provider => provider.GetRequiredService<RabbitMqConsumerService>());
181
+ }
182
+
183
+ void LoadConfiguration(WebApplicationBuilder builder)
184
+ {
185
+ // Only load from AWS SSM if NOT in Development
186
+ if (!builder.Environment.IsDevelopment())
187
+ {
188
+ // Load default JSON configuration
189
+ var ssmClient = new AmazonSimpleSystemsManagementClient();
190
+ var parameterRequest = new GetParameterRequest
191
+ {
192
+ Name = "innocons_appsettings",
193
+ WithDecryption = true // If stored as SecureString
194
+ };
195
+
196
+ // Try fetching appsettings from AWS SSM Parameter Store
197
+ try
198
+ {
199
+ var response = ssmClient.GetParameterAsync(parameterRequest).Result;
200
+ var jsonConfig = response.Parameter.Value;
201
+
202
+ // Load JSON settings into Configuration
203
+ var jsonStream = new MemoryStream(Encoding.UTF8.GetBytes(jsonConfig));
204
+ builder.Configuration.AddJsonStream(jsonStream);
205
+
206
+ Console.WriteLine("Loaded configuration from AWS SSM.");
207
+ }
208
+ catch (Exception ex)
209
+ {
210
+ Console.WriteLine($"Failed to fetch settings from SSM. Using local appsettings.json. Error: {ex.Message}");
211
+ }
212
+ }
213
+ }