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,2182 +0,0 @@
1
- {
2
- "version": 3,
3
- "targets": {
4
- "net8.0": {
5
- "Microsoft.Bcl.Memory/9.0.0": {
6
- "type": "package",
7
- "compile": {
8
- "lib/net8.0/Microsoft.Bcl.Memory.dll": {
9
- "related": ".xml"
10
- }
11
- },
12
- "runtime": {
13
- "lib/net8.0/Microsoft.Bcl.Memory.dll": {
14
- "related": ".xml"
15
- }
16
- },
17
- "build": {
18
- "buildTransitive/net8.0/_._": {}
19
- }
20
- },
21
- "Microsoft.Extensions.Configuration/8.0.0": {
22
- "type": "package",
23
- "dependencies": {
24
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
25
- "Microsoft.Extensions.Primitives": "8.0.0"
26
- },
27
- "compile": {
28
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
29
- "related": ".xml"
30
- }
31
- },
32
- "runtime": {
33
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
34
- "related": ".xml"
35
- }
36
- },
37
- "build": {
38
- "buildTransitive/net6.0/_._": {}
39
- }
40
- },
41
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
42
- "type": "package",
43
- "dependencies": {
44
- "Microsoft.Extensions.Primitives": "8.0.0"
45
- },
46
- "compile": {
47
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
48
- "related": ".xml"
49
- }
50
- },
51
- "runtime": {
52
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
53
- "related": ".xml"
54
- }
55
- },
56
- "build": {
57
- "buildTransitive/net6.0/_._": {}
58
- }
59
- },
60
- "Microsoft.Extensions.Configuration.Binder/8.0.0": {
61
- "type": "package",
62
- "dependencies": {
63
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
64
- },
65
- "compile": {
66
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
67
- "related": ".xml"
68
- }
69
- },
70
- "runtime": {
71
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
72
- "related": ".xml"
73
- }
74
- },
75
- "build": {
76
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
77
- }
78
- },
79
- "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
80
- "type": "package",
81
- "dependencies": {
82
- "Microsoft.Extensions.Configuration": "8.0.0",
83
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
84
- },
85
- "compile": {
86
- "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
87
- "related": ".xml"
88
- }
89
- },
90
- "runtime": {
91
- "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
92
- "related": ".xml"
93
- }
94
- },
95
- "build": {
96
- "buildTransitive/net6.0/_._": {}
97
- }
98
- },
99
- "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
100
- "type": "package",
101
- "dependencies": {
102
- "Microsoft.Extensions.Configuration": "8.0.0",
103
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
104
- },
105
- "compile": {
106
- "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
107
- "related": ".xml"
108
- }
109
- },
110
- "runtime": {
111
- "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
112
- "related": ".xml"
113
- }
114
- },
115
- "build": {
116
- "buildTransitive/net6.0/_._": {}
117
- }
118
- },
119
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
120
- "type": "package",
121
- "dependencies": {
122
- "Microsoft.Extensions.Configuration": "8.0.0",
123
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
124
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
125
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
126
- "Microsoft.Extensions.Primitives": "8.0.0"
127
- },
128
- "compile": {
129
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
130
- "related": ".xml"
131
- }
132
- },
133
- "runtime": {
134
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
135
- "related": ".xml"
136
- }
137
- },
138
- "build": {
139
- "buildTransitive/net6.0/_._": {}
140
- }
141
- },
142
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
143
- "type": "package",
144
- "dependencies": {
145
- "Microsoft.Extensions.Configuration": "8.0.0",
146
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
147
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
148
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
149
- "System.Text.Json": "8.0.0"
150
- },
151
- "compile": {
152
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
153
- "related": ".xml"
154
- }
155
- },
156
- "runtime": {
157
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
158
- "related": ".xml"
159
- }
160
- },
161
- "build": {
162
- "buildTransitive/net6.0/_._": {}
163
- }
164
- },
165
- "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
166
- "type": "package",
167
- "dependencies": {
168
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
169
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
170
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
171
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
172
- },
173
- "compile": {
174
- "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
175
- "related": ".xml"
176
- }
177
- },
178
- "runtime": {
179
- "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
180
- "related": ".xml"
181
- }
182
- },
183
- "build": {
184
- "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
185
- "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
186
- }
187
- },
188
- "Microsoft.Extensions.DependencyInjection/8.0.0": {
189
- "type": "package",
190
- "dependencies": {
191
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
192
- },
193
- "compile": {
194
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
195
- "related": ".xml"
196
- }
197
- },
198
- "runtime": {
199
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
200
- "related": ".xml"
201
- }
202
- },
203
- "build": {
204
- "buildTransitive/net6.0/_._": {}
205
- }
206
- },
207
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
208
- "type": "package",
209
- "compile": {
210
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
211
- "related": ".xml"
212
- }
213
- },
214
- "runtime": {
215
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
216
- "related": ".xml"
217
- }
218
- },
219
- "build": {
220
- "buildTransitive/net6.0/_._": {}
221
- }
222
- },
223
- "Microsoft.Extensions.Diagnostics/8.0.0": {
224
- "type": "package",
225
- "dependencies": {
226
- "Microsoft.Extensions.Configuration": "8.0.0",
227
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
228
- "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
229
- },
230
- "compile": {
231
- "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": {
232
- "related": ".xml"
233
- }
234
- },
235
- "runtime": {
236
- "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": {
237
- "related": ".xml"
238
- }
239
- },
240
- "build": {
241
- "buildTransitive/net6.0/_._": {}
242
- }
243
- },
244
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
245
- "type": "package",
246
- "dependencies": {
247
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
248
- "Microsoft.Extensions.Options": "8.0.0",
249
- "System.Diagnostics.DiagnosticSource": "8.0.0"
250
- },
251
- "compile": {
252
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
253
- "related": ".xml"
254
- }
255
- },
256
- "runtime": {
257
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
258
- "related": ".xml"
259
- }
260
- },
261
- "build": {
262
- "buildTransitive/net6.0/_._": {}
263
- }
264
- },
265
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
266
- "type": "package",
267
- "dependencies": {
268
- "Microsoft.Extensions.Primitives": "8.0.0"
269
- },
270
- "compile": {
271
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
272
- "related": ".xml"
273
- }
274
- },
275
- "runtime": {
276
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
277
- "related": ".xml"
278
- }
279
- },
280
- "build": {
281
- "buildTransitive/net6.0/_._": {}
282
- }
283
- },
284
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
285
- "type": "package",
286
- "dependencies": {
287
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
288
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
289
- "Microsoft.Extensions.Primitives": "8.0.0"
290
- },
291
- "compile": {
292
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
293
- "related": ".xml"
294
- }
295
- },
296
- "runtime": {
297
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
298
- "related": ".xml"
299
- }
300
- },
301
- "build": {
302
- "buildTransitive/net6.0/_._": {}
303
- }
304
- },
305
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
306
- "type": "package",
307
- "compile": {
308
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
309
- "related": ".xml"
310
- }
311
- },
312
- "runtime": {
313
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
314
- "related": ".xml"
315
- }
316
- },
317
- "build": {
318
- "buildTransitive/net6.0/_._": {}
319
- }
320
- },
321
- "Microsoft.Extensions.Hosting/8.0.0": {
322
- "type": "package",
323
- "dependencies": {
324
- "Microsoft.Extensions.Configuration": "8.0.0",
325
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
326
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
327
- "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
328
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
329
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
330
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
331
- "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
332
- "Microsoft.Extensions.DependencyInjection": "8.0.0",
333
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
334
- "Microsoft.Extensions.Diagnostics": "8.0.0",
335
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
336
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
337
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
338
- "Microsoft.Extensions.Logging": "8.0.0",
339
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
340
- "Microsoft.Extensions.Logging.Configuration": "8.0.0",
341
- "Microsoft.Extensions.Logging.Console": "8.0.0",
342
- "Microsoft.Extensions.Logging.Debug": "8.0.0",
343
- "Microsoft.Extensions.Logging.EventLog": "8.0.0",
344
- "Microsoft.Extensions.Logging.EventSource": "8.0.0",
345
- "Microsoft.Extensions.Options": "8.0.0"
346
- },
347
- "compile": {
348
- "lib/net8.0/Microsoft.Extensions.Hosting.dll": {
349
- "related": ".xml"
350
- }
351
- },
352
- "runtime": {
353
- "lib/net8.0/Microsoft.Extensions.Hosting.dll": {
354
- "related": ".xml"
355
- }
356
- },
357
- "build": {
358
- "buildTransitive/net6.0/_._": {}
359
- }
360
- },
361
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
362
- "type": "package",
363
- "dependencies": {
364
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
365
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
366
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
367
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
368
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
369
- },
370
- "compile": {
371
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
372
- "related": ".xml"
373
- }
374
- },
375
- "runtime": {
376
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
377
- "related": ".xml"
378
- }
379
- },
380
- "build": {
381
- "buildTransitive/net6.0/_._": {}
382
- }
383
- },
384
- "Microsoft.Extensions.Logging/8.0.0": {
385
- "type": "package",
386
- "dependencies": {
387
- "Microsoft.Extensions.DependencyInjection": "8.0.0",
388
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
389
- "Microsoft.Extensions.Options": "8.0.0"
390
- },
391
- "compile": {
392
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
393
- "related": ".xml"
394
- }
395
- },
396
- "runtime": {
397
- "lib/net8.0/Microsoft.Extensions.Logging.dll": {
398
- "related": ".xml"
399
- }
400
- },
401
- "build": {
402
- "buildTransitive/net6.0/_._": {}
403
- }
404
- },
405
- "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
406
- "type": "package",
407
- "dependencies": {
408
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
409
- },
410
- "compile": {
411
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
412
- "related": ".xml"
413
- }
414
- },
415
- "runtime": {
416
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
417
- "related": ".xml"
418
- }
419
- },
420
- "build": {
421
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
422
- }
423
- },
424
- "Microsoft.Extensions.Logging.Configuration/8.0.0": {
425
- "type": "package",
426
- "dependencies": {
427
- "Microsoft.Extensions.Configuration": "8.0.0",
428
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
429
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
430
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
431
- "Microsoft.Extensions.Logging": "8.0.0",
432
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
433
- "Microsoft.Extensions.Options": "8.0.0",
434
- "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
435
- },
436
- "compile": {
437
- "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": {
438
- "related": ".xml"
439
- }
440
- },
441
- "runtime": {
442
- "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": {
443
- "related": ".xml"
444
- }
445
- },
446
- "build": {
447
- "buildTransitive/net6.0/_._": {}
448
- }
449
- },
450
- "Microsoft.Extensions.Logging.Console/8.0.0": {
451
- "type": "package",
452
- "dependencies": {
453
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
454
- "Microsoft.Extensions.Logging": "8.0.0",
455
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
456
- "Microsoft.Extensions.Logging.Configuration": "8.0.0",
457
- "Microsoft.Extensions.Options": "8.0.0",
458
- "System.Text.Json": "8.0.0"
459
- },
460
- "compile": {
461
- "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": {
462
- "related": ".xml"
463
- }
464
- },
465
- "runtime": {
466
- "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": {
467
- "related": ".xml"
468
- }
469
- },
470
- "build": {
471
- "buildTransitive/net6.0/_._": {}
472
- }
473
- },
474
- "Microsoft.Extensions.Logging.Debug/8.0.0": {
475
- "type": "package",
476
- "dependencies": {
477
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
478
- "Microsoft.Extensions.Logging": "8.0.0",
479
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
480
- },
481
- "compile": {
482
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
483
- "related": ".xml"
484
- }
485
- },
486
- "runtime": {
487
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": {
488
- "related": ".xml"
489
- }
490
- },
491
- "build": {
492
- "buildTransitive/net6.0/_._": {}
493
- }
494
- },
495
- "Microsoft.Extensions.Logging.EventLog/8.0.0": {
496
- "type": "package",
497
- "dependencies": {
498
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
499
- "Microsoft.Extensions.Logging": "8.0.0",
500
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
501
- "Microsoft.Extensions.Options": "8.0.0",
502
- "System.Diagnostics.EventLog": "8.0.0"
503
- },
504
- "compile": {
505
- "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": {
506
- "related": ".xml"
507
- }
508
- },
509
- "runtime": {
510
- "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": {
511
- "related": ".xml"
512
- }
513
- },
514
- "build": {
515
- "buildTransitive/net6.0/_._": {}
516
- }
517
- },
518
- "Microsoft.Extensions.Logging.EventSource/8.0.0": {
519
- "type": "package",
520
- "dependencies": {
521
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
522
- "Microsoft.Extensions.Logging": "8.0.0",
523
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
524
- "Microsoft.Extensions.Options": "8.0.0",
525
- "Microsoft.Extensions.Primitives": "8.0.0",
526
- "System.Text.Json": "8.0.0"
527
- },
528
- "compile": {
529
- "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": {
530
- "related": ".xml"
531
- }
532
- },
533
- "runtime": {
534
- "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": {
535
- "related": ".xml"
536
- }
537
- },
538
- "build": {
539
- "buildTransitive/net6.0/_._": {}
540
- }
541
- },
542
- "Microsoft.Extensions.Options/8.0.0": {
543
- "type": "package",
544
- "dependencies": {
545
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
546
- "Microsoft.Extensions.Primitives": "8.0.0"
547
- },
548
- "compile": {
549
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
550
- "related": ".xml"
551
- }
552
- },
553
- "runtime": {
554
- "lib/net8.0/Microsoft.Extensions.Options.dll": {
555
- "related": ".xml"
556
- }
557
- },
558
- "build": {
559
- "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
560
- }
561
- },
562
- "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
563
- "type": "package",
564
- "dependencies": {
565
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
566
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
567
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
568
- "Microsoft.Extensions.Options": "8.0.0",
569
- "Microsoft.Extensions.Primitives": "8.0.0"
570
- },
571
- "compile": {
572
- "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
573
- "related": ".xml"
574
- }
575
- },
576
- "runtime": {
577
- "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
578
- "related": ".xml"
579
- }
580
- },
581
- "build": {
582
- "buildTransitive/net6.0/_._": {}
583
- }
584
- },
585
- "Microsoft.Extensions.Primitives/8.0.0": {
586
- "type": "package",
587
- "compile": {
588
- "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
589
- "related": ".xml"
590
- }
591
- },
592
- "runtime": {
593
- "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
594
- "related": ".xml"
595
- }
596
- },
597
- "build": {
598
- "buildTransitive/net6.0/_._": {}
599
- }
600
- },
601
- "Microsoft.IdentityModel.Abstractions/8.3.1": {
602
- "type": "package",
603
- "compile": {
604
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
605
- "related": ".xml"
606
- }
607
- },
608
- "runtime": {
609
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
610
- "related": ".xml"
611
- }
612
- }
613
- },
614
- "Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
615
- "type": "package",
616
- "dependencies": {
617
- "Microsoft.IdentityModel.Tokens": "8.3.1"
618
- },
619
- "compile": {
620
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
621
- "related": ".xml"
622
- }
623
- },
624
- "runtime": {
625
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
626
- "related": ".xml"
627
- }
628
- }
629
- },
630
- "Microsoft.IdentityModel.Logging/8.3.1": {
631
- "type": "package",
632
- "dependencies": {
633
- "Microsoft.IdentityModel.Abstractions": "8.3.1"
634
- },
635
- "compile": {
636
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
637
- "related": ".xml"
638
- }
639
- },
640
- "runtime": {
641
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
642
- "related": ".xml"
643
- }
644
- }
645
- },
646
- "Microsoft.IdentityModel.Tokens/8.3.1": {
647
- "type": "package",
648
- "dependencies": {
649
- "Microsoft.Bcl.Memory": "9.0.0",
650
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
651
- "Microsoft.IdentityModel.Logging": "8.3.1"
652
- },
653
- "compile": {
654
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
655
- "related": ".xml"
656
- }
657
- },
658
- "runtime": {
659
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
660
- "related": ".xml"
661
- }
662
- }
663
- },
664
- "MongoDB.Bson/3.1.0": {
665
- "type": "package",
666
- "dependencies": {
667
- "System.Memory": "4.5.5",
668
- "System.Runtime.CompilerServices.Unsafe": "5.0.0"
669
- },
670
- "compile": {
671
- "lib/net6.0/MongoDB.Bson.dll": {
672
- "related": ".xml"
673
- }
674
- },
675
- "runtime": {
676
- "lib/net6.0/MongoDB.Bson.dll": {
677
- "related": ".xml"
678
- }
679
- }
680
- },
681
- "System.Diagnostics.DiagnosticSource/8.0.0": {
682
- "type": "package",
683
- "compile": {
684
- "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
685
- "related": ".xml"
686
- }
687
- },
688
- "runtime": {
689
- "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": {
690
- "related": ".xml"
691
- }
692
- },
693
- "build": {
694
- "buildTransitive/net6.0/_._": {}
695
- }
696
- },
697
- "System.Diagnostics.EventLog/8.0.0": {
698
- "type": "package",
699
- "compile": {
700
- "lib/net8.0/System.Diagnostics.EventLog.dll": {
701
- "related": ".xml"
702
- }
703
- },
704
- "runtime": {
705
- "lib/net8.0/System.Diagnostics.EventLog.dll": {
706
- "related": ".xml"
707
- }
708
- },
709
- "build": {
710
- "buildTransitive/net6.0/_._": {}
711
- },
712
- "runtimeTargets": {
713
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
714
- "assetType": "runtime",
715
- "rid": "win"
716
- },
717
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
718
- "assetType": "runtime",
719
- "rid": "win"
720
- }
721
- }
722
- },
723
- "System.IdentityModel.Tokens.Jwt/8.3.1": {
724
- "type": "package",
725
- "dependencies": {
726
- "Microsoft.IdentityModel.JsonWebTokens": "8.3.1",
727
- "Microsoft.IdentityModel.Tokens": "8.3.1"
728
- },
729
- "compile": {
730
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
731
- "related": ".xml"
732
- }
733
- },
734
- "runtime": {
735
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
736
- "related": ".xml"
737
- }
738
- }
739
- },
740
- "System.Memory/4.5.5": {
741
- "type": "package",
742
- "compile": {
743
- "ref/netcoreapp2.1/_._": {}
744
- },
745
- "runtime": {
746
- "lib/netcoreapp2.1/_._": {}
747
- }
748
- },
749
- "System.Runtime.CompilerServices.Unsafe/5.0.0": {
750
- "type": "package",
751
- "compile": {
752
- "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {
753
- "related": ".xml"
754
- }
755
- },
756
- "runtime": {
757
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
758
- "related": ".xml"
759
- }
760
- }
761
- },
762
- "System.Text.Encodings.Web/8.0.0": {
763
- "type": "package",
764
- "compile": {
765
- "lib/net8.0/System.Text.Encodings.Web.dll": {
766
- "related": ".xml"
767
- }
768
- },
769
- "runtime": {
770
- "lib/net8.0/System.Text.Encodings.Web.dll": {
771
- "related": ".xml"
772
- }
773
- },
774
- "build": {
775
- "buildTransitive/net6.0/_._": {}
776
- },
777
- "runtimeTargets": {
778
- "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
779
- "assetType": "runtime",
780
- "rid": "browser"
781
- }
782
- }
783
- },
784
- "System.Text.Json/8.0.0": {
785
- "type": "package",
786
- "dependencies": {
787
- "System.Text.Encodings.Web": "8.0.0"
788
- },
789
- "compile": {
790
- "lib/net8.0/System.Text.Json.dll": {
791
- "related": ".xml"
792
- }
793
- },
794
- "runtime": {
795
- "lib/net8.0/System.Text.Json.dll": {
796
- "related": ".xml"
797
- }
798
- },
799
- "build": {
800
- "buildTransitive/net6.0/System.Text.Json.targets": {}
801
- }
802
- }
803
- }
804
- },
805
- "libraries": {
806
- "Microsoft.Bcl.Memory/9.0.0": {
807
- "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
808
- "type": "package",
809
- "path": "microsoft.bcl.memory/9.0.0",
810
- "files": [
811
- ".nupkg.metadata",
812
- ".signature.p7s",
813
- "Icon.png",
814
- "LICENSE.TXT",
815
- "PACKAGE.md",
816
- "THIRD-PARTY-NOTICES.TXT",
817
- "buildTransitive/net461/Microsoft.Bcl.Memory.targets",
818
- "buildTransitive/net462/_._",
819
- "buildTransitive/net8.0/_._",
820
- "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
821
- "lib/net462/Microsoft.Bcl.Memory.dll",
822
- "lib/net462/Microsoft.Bcl.Memory.xml",
823
- "lib/net8.0/Microsoft.Bcl.Memory.dll",
824
- "lib/net8.0/Microsoft.Bcl.Memory.xml",
825
- "lib/net9.0/Microsoft.Bcl.Memory.dll",
826
- "lib/net9.0/Microsoft.Bcl.Memory.xml",
827
- "lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
828
- "lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
829
- "lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
830
- "lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
831
- "microsoft.bcl.memory.9.0.0.nupkg.sha512",
832
- "microsoft.bcl.memory.nuspec",
833
- "useSharedDesignerContext.txt"
834
- ]
835
- },
836
- "Microsoft.Extensions.Configuration/8.0.0": {
837
- "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
838
- "type": "package",
839
- "path": "microsoft.extensions.configuration/8.0.0",
840
- "files": [
841
- ".nupkg.metadata",
842
- ".signature.p7s",
843
- "Icon.png",
844
- "LICENSE.TXT",
845
- "PACKAGE.md",
846
- "THIRD-PARTY-NOTICES.TXT",
847
- "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
848
- "buildTransitive/net462/_._",
849
- "buildTransitive/net6.0/_._",
850
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
851
- "lib/net462/Microsoft.Extensions.Configuration.dll",
852
- "lib/net462/Microsoft.Extensions.Configuration.xml",
853
- "lib/net6.0/Microsoft.Extensions.Configuration.dll",
854
- "lib/net6.0/Microsoft.Extensions.Configuration.xml",
855
- "lib/net7.0/Microsoft.Extensions.Configuration.dll",
856
- "lib/net7.0/Microsoft.Extensions.Configuration.xml",
857
- "lib/net8.0/Microsoft.Extensions.Configuration.dll",
858
- "lib/net8.0/Microsoft.Extensions.Configuration.xml",
859
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
860
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
861
- "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
862
- "microsoft.extensions.configuration.nuspec",
863
- "useSharedDesignerContext.txt"
864
- ]
865
- },
866
- "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
867
- "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
868
- "type": "package",
869
- "path": "microsoft.extensions.configuration.abstractions/8.0.0",
870
- "files": [
871
- ".nupkg.metadata",
872
- ".signature.p7s",
873
- "Icon.png",
874
- "LICENSE.TXT",
875
- "PACKAGE.md",
876
- "THIRD-PARTY-NOTICES.TXT",
877
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
878
- "buildTransitive/net462/_._",
879
- "buildTransitive/net6.0/_._",
880
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
881
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
882
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
883
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
884
- "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
885
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
886
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
887
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
888
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
889
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
890
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
891
- "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
892
- "microsoft.extensions.configuration.abstractions.nuspec",
893
- "useSharedDesignerContext.txt"
894
- ]
895
- },
896
- "Microsoft.Extensions.Configuration.Binder/8.0.0": {
897
- "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
898
- "type": "package",
899
- "path": "microsoft.extensions.configuration.binder/8.0.0",
900
- "files": [
901
- ".nupkg.metadata",
902
- ".signature.p7s",
903
- "Icon.png",
904
- "LICENSE.TXT",
905
- "PACKAGE.md",
906
- "THIRD-PARTY-NOTICES.TXT",
907
- "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
908
- "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
909
- "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
910
- "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
911
- "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
912
- "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
913
- "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
914
- "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
915
- "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
916
- "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
917
- "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
918
- "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
919
- "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
920
- "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
921
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
922
- "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
923
- "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
924
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
925
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
926
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
927
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
928
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
929
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
930
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
931
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
932
- "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
933
- "microsoft.extensions.configuration.binder.nuspec",
934
- "useSharedDesignerContext.txt"
935
- ]
936
- },
937
- "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
938
- "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
939
- "type": "package",
940
- "path": "microsoft.extensions.configuration.commandline/8.0.0",
941
- "files": [
942
- ".nupkg.metadata",
943
- ".signature.p7s",
944
- "Icon.png",
945
- "LICENSE.TXT",
946
- "PACKAGE.md",
947
- "THIRD-PARTY-NOTICES.TXT",
948
- "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
949
- "buildTransitive/net462/_._",
950
- "buildTransitive/net6.0/_._",
951
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
952
- "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
953
- "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
954
- "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
955
- "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
956
- "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
957
- "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
958
- "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
959
- "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
960
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
961
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
962
- "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
963
- "microsoft.extensions.configuration.commandline.nuspec",
964
- "useSharedDesignerContext.txt"
965
- ]
966
- },
967
- "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
968
- "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
969
- "type": "package",
970
- "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
971
- "files": [
972
- ".nupkg.metadata",
973
- ".signature.p7s",
974
- "Icon.png",
975
- "LICENSE.TXT",
976
- "PACKAGE.md",
977
- "THIRD-PARTY-NOTICES.TXT",
978
- "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
979
- "buildTransitive/net462/_._",
980
- "buildTransitive/net6.0/_._",
981
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
982
- "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
983
- "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
984
- "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
985
- "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
986
- "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
987
- "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
988
- "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
989
- "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
990
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
991
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
992
- "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
993
- "microsoft.extensions.configuration.environmentvariables.nuspec",
994
- "useSharedDesignerContext.txt"
995
- ]
996
- },
997
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
998
- "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
999
- "type": "package",
1000
- "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
1001
- "files": [
1002
- ".nupkg.metadata",
1003
- ".signature.p7s",
1004
- "Icon.png",
1005
- "LICENSE.TXT",
1006
- "PACKAGE.md",
1007
- "THIRD-PARTY-NOTICES.TXT",
1008
- "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
1009
- "buildTransitive/net462/_._",
1010
- "buildTransitive/net6.0/_._",
1011
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
1012
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
1013
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
1014
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
1015
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
1016
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
1017
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
1018
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
1019
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
1020
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
1021
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
1022
- "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
1023
- "microsoft.extensions.configuration.fileextensions.nuspec",
1024
- "useSharedDesignerContext.txt"
1025
- ]
1026
- },
1027
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
1028
- "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
1029
- "type": "package",
1030
- "path": "microsoft.extensions.configuration.json/8.0.0",
1031
- "files": [
1032
- ".nupkg.metadata",
1033
- ".signature.p7s",
1034
- "Icon.png",
1035
- "LICENSE.TXT",
1036
- "PACKAGE.md",
1037
- "THIRD-PARTY-NOTICES.TXT",
1038
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
1039
- "buildTransitive/net462/_._",
1040
- "buildTransitive/net6.0/_._",
1041
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
1042
- "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
1043
- "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
1044
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
1045
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
1046
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
1047
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
1048
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
1049
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
1050
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
1051
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
1052
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
1053
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
1054
- "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
1055
- "microsoft.extensions.configuration.json.nuspec",
1056
- "useSharedDesignerContext.txt"
1057
- ]
1058
- },
1059
- "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
1060
- "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
1061
- "type": "package",
1062
- "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
1063
- "files": [
1064
- ".nupkg.metadata",
1065
- ".signature.p7s",
1066
- "Icon.png",
1067
- "LICENSE.TXT",
1068
- "PACKAGE.md",
1069
- "THIRD-PARTY-NOTICES.TXT",
1070
- "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
1071
- "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
1072
- "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
1073
- "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
1074
- "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
1075
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
1076
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
1077
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
1078
- "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
1079
- "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
1080
- "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
1081
- "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
1082
- "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
1083
- "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
1084
- "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
1085
- "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
1086
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
1087
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
1088
- "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
1089
- "microsoft.extensions.configuration.usersecrets.nuspec",
1090
- "useSharedDesignerContext.txt"
1091
- ]
1092
- },
1093
- "Microsoft.Extensions.DependencyInjection/8.0.0": {
1094
- "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
1095
- "type": "package",
1096
- "path": "microsoft.extensions.dependencyinjection/8.0.0",
1097
- "files": [
1098
- ".nupkg.metadata",
1099
- ".signature.p7s",
1100
- "Icon.png",
1101
- "LICENSE.TXT",
1102
- "PACKAGE.md",
1103
- "THIRD-PARTY-NOTICES.TXT",
1104
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
1105
- "buildTransitive/net462/_._",
1106
- "buildTransitive/net6.0/_._",
1107
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
1108
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
1109
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
1110
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
1111
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
1112
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
1113
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
1114
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
1115
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
1116
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
1117
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
1118
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
1119
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
1120
- "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
1121
- "microsoft.extensions.dependencyinjection.nuspec",
1122
- "useSharedDesignerContext.txt"
1123
- ]
1124
- },
1125
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
1126
- "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
1127
- "type": "package",
1128
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
1129
- "files": [
1130
- ".nupkg.metadata",
1131
- ".signature.p7s",
1132
- "Icon.png",
1133
- "LICENSE.TXT",
1134
- "PACKAGE.md",
1135
- "THIRD-PARTY-NOTICES.TXT",
1136
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
1137
- "buildTransitive/net462/_._",
1138
- "buildTransitive/net6.0/_._",
1139
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
1140
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1141
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1142
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1143
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1144
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1145
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1146
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1147
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1148
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1149
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1150
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
1151
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
1152
- "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
1153
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
1154
- "useSharedDesignerContext.txt"
1155
- ]
1156
- },
1157
- "Microsoft.Extensions.Diagnostics/8.0.0": {
1158
- "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
1159
- "type": "package",
1160
- "path": "microsoft.extensions.diagnostics/8.0.0",
1161
- "files": [
1162
- ".nupkg.metadata",
1163
- ".signature.p7s",
1164
- "Icon.png",
1165
- "LICENSE.TXT",
1166
- "THIRD-PARTY-NOTICES.TXT",
1167
- "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
1168
- "buildTransitive/net462/_._",
1169
- "buildTransitive/net6.0/_._",
1170
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
1171
- "lib/net462/Microsoft.Extensions.Diagnostics.dll",
1172
- "lib/net462/Microsoft.Extensions.Diagnostics.xml",
1173
- "lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
1174
- "lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
1175
- "lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
1176
- "lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
1177
- "lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
1178
- "lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
1179
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
1180
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
1181
- "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
1182
- "microsoft.extensions.diagnostics.nuspec",
1183
- "useSharedDesignerContext.txt"
1184
- ]
1185
- },
1186
- "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
1187
- "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
1188
- "type": "package",
1189
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
1190
- "files": [
1191
- ".nupkg.metadata",
1192
- ".signature.p7s",
1193
- "Icon.png",
1194
- "LICENSE.TXT",
1195
- "THIRD-PARTY-NOTICES.TXT",
1196
- "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
1197
- "buildTransitive/net462/_._",
1198
- "buildTransitive/net6.0/_._",
1199
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
1200
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1201
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1202
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1203
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1204
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1205
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1206
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1207
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1208
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
1209
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
1210
- "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
1211
- "microsoft.extensions.diagnostics.abstractions.nuspec",
1212
- "useSharedDesignerContext.txt"
1213
- ]
1214
- },
1215
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
1216
- "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
1217
- "type": "package",
1218
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
1219
- "files": [
1220
- ".nupkg.metadata",
1221
- ".signature.p7s",
1222
- "Icon.png",
1223
- "LICENSE.TXT",
1224
- "PACKAGE.md",
1225
- "THIRD-PARTY-NOTICES.TXT",
1226
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
1227
- "buildTransitive/net462/_._",
1228
- "buildTransitive/net6.0/_._",
1229
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
1230
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
1231
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
1232
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1233
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1234
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1235
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1236
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
1237
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
1238
- "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
1239
- "microsoft.extensions.fileproviders.abstractions.nuspec",
1240
- "useSharedDesignerContext.txt"
1241
- ]
1242
- },
1243
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
1244
- "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
1245
- "type": "package",
1246
- "path": "microsoft.extensions.fileproviders.physical/8.0.0",
1247
- "files": [
1248
- ".nupkg.metadata",
1249
- ".signature.p7s",
1250
- "Icon.png",
1251
- "LICENSE.TXT",
1252
- "PACKAGE.md",
1253
- "THIRD-PARTY-NOTICES.TXT",
1254
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
1255
- "buildTransitive/net462/_._",
1256
- "buildTransitive/net6.0/_._",
1257
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
1258
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
1259
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
1260
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
1261
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
1262
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
1263
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
1264
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
1265
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
1266
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
1267
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
1268
- "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
1269
- "microsoft.extensions.fileproviders.physical.nuspec",
1270
- "useSharedDesignerContext.txt"
1271
- ]
1272
- },
1273
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
1274
- "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
1275
- "type": "package",
1276
- "path": "microsoft.extensions.filesystemglobbing/8.0.0",
1277
- "files": [
1278
- ".nupkg.metadata",
1279
- ".signature.p7s",
1280
- "Icon.png",
1281
- "LICENSE.TXT",
1282
- "PACKAGE.md",
1283
- "THIRD-PARTY-NOTICES.TXT",
1284
- "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
1285
- "buildTransitive/net462/_._",
1286
- "buildTransitive/net6.0/_._",
1287
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
1288
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
1289
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
1290
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
1291
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
1292
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
1293
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
1294
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
1295
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
1296
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
1297
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
1298
- "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
1299
- "microsoft.extensions.filesystemglobbing.nuspec",
1300
- "useSharedDesignerContext.txt"
1301
- ]
1302
- },
1303
- "Microsoft.Extensions.Hosting/8.0.0": {
1304
- "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
1305
- "type": "package",
1306
- "path": "microsoft.extensions.hosting/8.0.0",
1307
- "files": [
1308
- ".nupkg.metadata",
1309
- ".signature.p7s",
1310
- "Icon.png",
1311
- "LICENSE.TXT",
1312
- "PACKAGE.md",
1313
- "THIRD-PARTY-NOTICES.TXT",
1314
- "buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
1315
- "buildTransitive/net462/_._",
1316
- "buildTransitive/net6.0/_._",
1317
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
1318
- "lib/net462/Microsoft.Extensions.Hosting.dll",
1319
- "lib/net462/Microsoft.Extensions.Hosting.xml",
1320
- "lib/net6.0/Microsoft.Extensions.Hosting.dll",
1321
- "lib/net6.0/Microsoft.Extensions.Hosting.xml",
1322
- "lib/net7.0/Microsoft.Extensions.Hosting.dll",
1323
- "lib/net7.0/Microsoft.Extensions.Hosting.xml",
1324
- "lib/net8.0/Microsoft.Extensions.Hosting.dll",
1325
- "lib/net8.0/Microsoft.Extensions.Hosting.xml",
1326
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
1327
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
1328
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
1329
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
1330
- "microsoft.extensions.hosting.8.0.0.nupkg.sha512",
1331
- "microsoft.extensions.hosting.nuspec",
1332
- "useSharedDesignerContext.txt"
1333
- ]
1334
- },
1335
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
1336
- "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
1337
- "type": "package",
1338
- "path": "microsoft.extensions.hosting.abstractions/8.0.0",
1339
- "files": [
1340
- ".nupkg.metadata",
1341
- ".signature.p7s",
1342
- "Icon.png",
1343
- "LICENSE.TXT",
1344
- "PACKAGE.md",
1345
- "THIRD-PARTY-NOTICES.TXT",
1346
- "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
1347
- "buildTransitive/net462/_._",
1348
- "buildTransitive/net6.0/_._",
1349
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
1350
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
1351
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
1352
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1353
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1354
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1355
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1356
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1357
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1358
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
1359
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
1360
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
1361
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
1362
- "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
1363
- "microsoft.extensions.hosting.abstractions.nuspec",
1364
- "useSharedDesignerContext.txt"
1365
- ]
1366
- },
1367
- "Microsoft.Extensions.Logging/8.0.0": {
1368
- "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
1369
- "type": "package",
1370
- "path": "microsoft.extensions.logging/8.0.0",
1371
- "files": [
1372
- ".nupkg.metadata",
1373
- ".signature.p7s",
1374
- "Icon.png",
1375
- "LICENSE.TXT",
1376
- "PACKAGE.md",
1377
- "THIRD-PARTY-NOTICES.TXT",
1378
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
1379
- "buildTransitive/net462/_._",
1380
- "buildTransitive/net6.0/_._",
1381
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
1382
- "lib/net462/Microsoft.Extensions.Logging.dll",
1383
- "lib/net462/Microsoft.Extensions.Logging.xml",
1384
- "lib/net6.0/Microsoft.Extensions.Logging.dll",
1385
- "lib/net6.0/Microsoft.Extensions.Logging.xml",
1386
- "lib/net7.0/Microsoft.Extensions.Logging.dll",
1387
- "lib/net7.0/Microsoft.Extensions.Logging.xml",
1388
- "lib/net8.0/Microsoft.Extensions.Logging.dll",
1389
- "lib/net8.0/Microsoft.Extensions.Logging.xml",
1390
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
1391
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
1392
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
1393
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
1394
- "microsoft.extensions.logging.8.0.0.nupkg.sha512",
1395
- "microsoft.extensions.logging.nuspec",
1396
- "useSharedDesignerContext.txt"
1397
- ]
1398
- },
1399
- "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
1400
- "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
1401
- "type": "package",
1402
- "path": "microsoft.extensions.logging.abstractions/8.0.0",
1403
- "files": [
1404
- ".nupkg.metadata",
1405
- ".signature.p7s",
1406
- "Icon.png",
1407
- "LICENSE.TXT",
1408
- "PACKAGE.md",
1409
- "THIRD-PARTY-NOTICES.TXT",
1410
- "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
1411
- "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1412
- "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1413
- "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1414
- "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1415
- "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1416
- "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1417
- "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1418
- "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1419
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1420
- "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1421
- "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1422
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1423
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1424
- "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
1425
- "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1426
- "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1427
- "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1428
- "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1429
- "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1430
- "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1431
- "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1432
- "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1433
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1434
- "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1435
- "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1436
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1437
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1438
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
1439
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
1440
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
1441
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
1442
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
1443
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
1444
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
1445
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
1446
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
1447
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
1448
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
1449
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
1450
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
1451
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
1452
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
1453
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
1454
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
1455
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
1456
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
1457
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
1458
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
1459
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
1460
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
1461
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
1462
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
1463
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
1464
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
1465
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
1466
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
1467
- "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
1468
- "microsoft.extensions.logging.abstractions.nuspec",
1469
- "useSharedDesignerContext.txt"
1470
- ]
1471
- },
1472
- "Microsoft.Extensions.Logging.Configuration/8.0.0": {
1473
- "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
1474
- "type": "package",
1475
- "path": "microsoft.extensions.logging.configuration/8.0.0",
1476
- "files": [
1477
- ".nupkg.metadata",
1478
- ".signature.p7s",
1479
- "Icon.png",
1480
- "LICENSE.TXT",
1481
- "THIRD-PARTY-NOTICES.TXT",
1482
- "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
1483
- "buildTransitive/net462/_._",
1484
- "buildTransitive/net6.0/_._",
1485
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
1486
- "lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
1487
- "lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
1488
- "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
1489
- "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
1490
- "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
1491
- "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
1492
- "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
1493
- "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
1494
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
1495
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
1496
- "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
1497
- "microsoft.extensions.logging.configuration.nuspec",
1498
- "useSharedDesignerContext.txt"
1499
- ]
1500
- },
1501
- "Microsoft.Extensions.Logging.Console/8.0.0": {
1502
- "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
1503
- "type": "package",
1504
- "path": "microsoft.extensions.logging.console/8.0.0",
1505
- "files": [
1506
- ".nupkg.metadata",
1507
- ".signature.p7s",
1508
- "Icon.png",
1509
- "LICENSE.TXT",
1510
- "PACKAGE.md",
1511
- "THIRD-PARTY-NOTICES.TXT",
1512
- "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
1513
- "buildTransitive/net462/_._",
1514
- "buildTransitive/net6.0/_._",
1515
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
1516
- "lib/net462/Microsoft.Extensions.Logging.Console.dll",
1517
- "lib/net462/Microsoft.Extensions.Logging.Console.xml",
1518
- "lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
1519
- "lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
1520
- "lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
1521
- "lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
1522
- "lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
1523
- "lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
1524
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
1525
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
1526
- "microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
1527
- "microsoft.extensions.logging.console.nuspec",
1528
- "useSharedDesignerContext.txt"
1529
- ]
1530
- },
1531
- "Microsoft.Extensions.Logging.Debug/8.0.0": {
1532
- "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
1533
- "type": "package",
1534
- "path": "microsoft.extensions.logging.debug/8.0.0",
1535
- "files": [
1536
- ".nupkg.metadata",
1537
- ".signature.p7s",
1538
- "Icon.png",
1539
- "LICENSE.TXT",
1540
- "PACKAGE.md",
1541
- "THIRD-PARTY-NOTICES.TXT",
1542
- "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
1543
- "buildTransitive/net462/_._",
1544
- "buildTransitive/net6.0/_._",
1545
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
1546
- "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
1547
- "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
1548
- "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
1549
- "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
1550
- "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
1551
- "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
1552
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
1553
- "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
1554
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
1555
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
1556
- "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
1557
- "microsoft.extensions.logging.debug.nuspec",
1558
- "useSharedDesignerContext.txt"
1559
- ]
1560
- },
1561
- "Microsoft.Extensions.Logging.EventLog/8.0.0": {
1562
- "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
1563
- "type": "package",
1564
- "path": "microsoft.extensions.logging.eventlog/8.0.0",
1565
- "files": [
1566
- ".nupkg.metadata",
1567
- ".signature.p7s",
1568
- "Icon.png",
1569
- "LICENSE.TXT",
1570
- "THIRD-PARTY-NOTICES.TXT",
1571
- "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
1572
- "buildTransitive/net462/_._",
1573
- "buildTransitive/net6.0/_._",
1574
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
1575
- "lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
1576
- "lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
1577
- "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
1578
- "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
1579
- "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
1580
- "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
1581
- "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
1582
- "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
1583
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
1584
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
1585
- "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
1586
- "microsoft.extensions.logging.eventlog.nuspec",
1587
- "useSharedDesignerContext.txt"
1588
- ]
1589
- },
1590
- "Microsoft.Extensions.Logging.EventSource/8.0.0": {
1591
- "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
1592
- "type": "package",
1593
- "path": "microsoft.extensions.logging.eventsource/8.0.0",
1594
- "files": [
1595
- ".nupkg.metadata",
1596
- ".signature.p7s",
1597
- "Icon.png",
1598
- "LICENSE.TXT",
1599
- "THIRD-PARTY-NOTICES.TXT",
1600
- "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
1601
- "buildTransitive/net462/_._",
1602
- "buildTransitive/net6.0/_._",
1603
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
1604
- "lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
1605
- "lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
1606
- "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
1607
- "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
1608
- "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
1609
- "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
1610
- "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
1611
- "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
1612
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
1613
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
1614
- "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
1615
- "microsoft.extensions.logging.eventsource.nuspec",
1616
- "useSharedDesignerContext.txt"
1617
- ]
1618
- },
1619
- "Microsoft.Extensions.Options/8.0.0": {
1620
- "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
1621
- "type": "package",
1622
- "path": "microsoft.extensions.options/8.0.0",
1623
- "files": [
1624
- ".nupkg.metadata",
1625
- ".signature.p7s",
1626
- "Icon.png",
1627
- "LICENSE.TXT",
1628
- "PACKAGE.md",
1629
- "THIRD-PARTY-NOTICES.TXT",
1630
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
1631
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1632
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1633
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1634
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1635
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1636
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1637
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1638
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1639
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1640
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1641
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1642
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1643
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
1644
- "buildTransitive/net461/Microsoft.Extensions.Options.targets",
1645
- "buildTransitive/net462/Microsoft.Extensions.Options.targets",
1646
- "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
1647
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
1648
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
1649
- "lib/net462/Microsoft.Extensions.Options.dll",
1650
- "lib/net462/Microsoft.Extensions.Options.xml",
1651
- "lib/net6.0/Microsoft.Extensions.Options.dll",
1652
- "lib/net6.0/Microsoft.Extensions.Options.xml",
1653
- "lib/net7.0/Microsoft.Extensions.Options.dll",
1654
- "lib/net7.0/Microsoft.Extensions.Options.xml",
1655
- "lib/net8.0/Microsoft.Extensions.Options.dll",
1656
- "lib/net8.0/Microsoft.Extensions.Options.xml",
1657
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
1658
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
1659
- "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
1660
- "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
1661
- "microsoft.extensions.options.8.0.0.nupkg.sha512",
1662
- "microsoft.extensions.options.nuspec",
1663
- "useSharedDesignerContext.txt"
1664
- ]
1665
- },
1666
- "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
1667
- "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
1668
- "type": "package",
1669
- "path": "microsoft.extensions.options.configurationextensions/8.0.0",
1670
- "files": [
1671
- ".nupkg.metadata",
1672
- ".signature.p7s",
1673
- "Icon.png",
1674
- "LICENSE.TXT",
1675
- "PACKAGE.md",
1676
- "THIRD-PARTY-NOTICES.TXT",
1677
- "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
1678
- "buildTransitive/net462/_._",
1679
- "buildTransitive/net6.0/_._",
1680
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
1681
- "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
1682
- "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
1683
- "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
1684
- "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
1685
- "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
1686
- "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
1687
- "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
1688
- "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
1689
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
1690
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
1691
- "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
1692
- "microsoft.extensions.options.configurationextensions.nuspec",
1693
- "useSharedDesignerContext.txt"
1694
- ]
1695
- },
1696
- "Microsoft.Extensions.Primitives/8.0.0": {
1697
- "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
1698
- "type": "package",
1699
- "path": "microsoft.extensions.primitives/8.0.0",
1700
- "files": [
1701
- ".nupkg.metadata",
1702
- ".signature.p7s",
1703
- "Icon.png",
1704
- "LICENSE.TXT",
1705
- "PACKAGE.md",
1706
- "THIRD-PARTY-NOTICES.TXT",
1707
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
1708
- "buildTransitive/net462/_._",
1709
- "buildTransitive/net6.0/_._",
1710
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
1711
- "lib/net462/Microsoft.Extensions.Primitives.dll",
1712
- "lib/net462/Microsoft.Extensions.Primitives.xml",
1713
- "lib/net6.0/Microsoft.Extensions.Primitives.dll",
1714
- "lib/net6.0/Microsoft.Extensions.Primitives.xml",
1715
- "lib/net7.0/Microsoft.Extensions.Primitives.dll",
1716
- "lib/net7.0/Microsoft.Extensions.Primitives.xml",
1717
- "lib/net8.0/Microsoft.Extensions.Primitives.dll",
1718
- "lib/net8.0/Microsoft.Extensions.Primitives.xml",
1719
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
1720
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
1721
- "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
1722
- "microsoft.extensions.primitives.nuspec",
1723
- "useSharedDesignerContext.txt"
1724
- ]
1725
- },
1726
- "Microsoft.IdentityModel.Abstractions/8.3.1": {
1727
- "sha512": "oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==",
1728
- "type": "package",
1729
- "path": "microsoft.identitymodel.abstractions/8.3.1",
1730
- "files": [
1731
- ".nupkg.metadata",
1732
- ".signature.p7s",
1733
- "README.md",
1734
- "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
1735
- "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
1736
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
1737
- "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
1738
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
1739
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
1740
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
1741
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
1742
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
1743
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
1744
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
1745
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
1746
- "microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512",
1747
- "microsoft.identitymodel.abstractions.nuspec"
1748
- ]
1749
- },
1750
- "Microsoft.IdentityModel.JsonWebTokens/8.3.1": {
1751
- "sha512": "cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==",
1752
- "type": "package",
1753
- "path": "microsoft.identitymodel.jsonwebtokens/8.3.1",
1754
- "files": [
1755
- ".nupkg.metadata",
1756
- ".signature.p7s",
1757
- "README.md",
1758
- "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
1759
- "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
1760
- "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
1761
- "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
1762
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
1763
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
1764
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
1765
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
1766
- "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
1767
- "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
1768
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
1769
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
1770
- "microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512",
1771
- "microsoft.identitymodel.jsonwebtokens.nuspec"
1772
- ]
1773
- },
1774
- "Microsoft.IdentityModel.Logging/8.3.1": {
1775
- "sha512": "XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==",
1776
- "type": "package",
1777
- "path": "microsoft.identitymodel.logging/8.3.1",
1778
- "files": [
1779
- ".nupkg.metadata",
1780
- ".signature.p7s",
1781
- "README.md",
1782
- "lib/net462/Microsoft.IdentityModel.Logging.dll",
1783
- "lib/net462/Microsoft.IdentityModel.Logging.xml",
1784
- "lib/net472/Microsoft.IdentityModel.Logging.dll",
1785
- "lib/net472/Microsoft.IdentityModel.Logging.xml",
1786
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
1787
- "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
1788
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
1789
- "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
1790
- "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
1791
- "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
1792
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
1793
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
1794
- "microsoft.identitymodel.logging.8.3.1.nupkg.sha512",
1795
- "microsoft.identitymodel.logging.nuspec"
1796
- ]
1797
- },
1798
- "Microsoft.IdentityModel.Tokens/8.3.1": {
1799
- "sha512": "77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==",
1800
- "type": "package",
1801
- "path": "microsoft.identitymodel.tokens/8.3.1",
1802
- "files": [
1803
- ".nupkg.metadata",
1804
- ".signature.p7s",
1805
- "README.md",
1806
- "lib/net462/Microsoft.IdentityModel.Tokens.dll",
1807
- "lib/net462/Microsoft.IdentityModel.Tokens.xml",
1808
- "lib/net472/Microsoft.IdentityModel.Tokens.dll",
1809
- "lib/net472/Microsoft.IdentityModel.Tokens.xml",
1810
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
1811
- "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
1812
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
1813
- "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
1814
- "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
1815
- "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
1816
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
1817
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
1818
- "microsoft.identitymodel.tokens.8.3.1.nupkg.sha512",
1819
- "microsoft.identitymodel.tokens.nuspec"
1820
- ]
1821
- },
1822
- "MongoDB.Bson/3.1.0": {
1823
- "sha512": "3dhaZhz18B5vUoEP13o2j8A6zQfkHdZhwBvLZEjDJum4BTLLv1/Z8bt25UQEtpqvYwLgde4R6ekWZ7XAYUMxuw==",
1824
- "type": "package",
1825
- "path": "mongodb.bson/3.1.0",
1826
- "files": [
1827
- ".nupkg.metadata",
1828
- ".signature.p7s",
1829
- "README.md",
1830
- "lib/net472/MongoDB.Bson.dll",
1831
- "lib/net472/MongoDB.Bson.xml",
1832
- "lib/net6.0/MongoDB.Bson.dll",
1833
- "lib/net6.0/MongoDB.Bson.xml",
1834
- "lib/netstandard2.1/MongoDB.Bson.dll",
1835
- "lib/netstandard2.1/MongoDB.Bson.xml",
1836
- "mongodb.bson.3.1.0.nupkg.sha512",
1837
- "mongodb.bson.nuspec",
1838
- "packageIcon.png"
1839
- ]
1840
- },
1841
- "System.Diagnostics.DiagnosticSource/8.0.0": {
1842
- "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
1843
- "type": "package",
1844
- "path": "system.diagnostics.diagnosticsource/8.0.0",
1845
- "files": [
1846
- ".nupkg.metadata",
1847
- ".signature.p7s",
1848
- "Icon.png",
1849
- "LICENSE.TXT",
1850
- "THIRD-PARTY-NOTICES.TXT",
1851
- "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
1852
- "buildTransitive/net462/_._",
1853
- "buildTransitive/net6.0/_._",
1854
- "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
1855
- "lib/net462/System.Diagnostics.DiagnosticSource.dll",
1856
- "lib/net462/System.Diagnostics.DiagnosticSource.xml",
1857
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
1858
- "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
1859
- "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
1860
- "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
1861
- "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
1862
- "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
1863
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
1864
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
1865
- "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
1866
- "system.diagnostics.diagnosticsource.nuspec",
1867
- "useSharedDesignerContext.txt"
1868
- ]
1869
- },
1870
- "System.Diagnostics.EventLog/8.0.0": {
1871
- "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
1872
- "type": "package",
1873
- "path": "system.diagnostics.eventlog/8.0.0",
1874
- "files": [
1875
- ".nupkg.metadata",
1876
- ".signature.p7s",
1877
- "Icon.png",
1878
- "LICENSE.TXT",
1879
- "PACKAGE.md",
1880
- "THIRD-PARTY-NOTICES.TXT",
1881
- "buildTransitive/net461/System.Diagnostics.EventLog.targets",
1882
- "buildTransitive/net462/_._",
1883
- "buildTransitive/net6.0/_._",
1884
- "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
1885
- "lib/net462/System.Diagnostics.EventLog.dll",
1886
- "lib/net462/System.Diagnostics.EventLog.xml",
1887
- "lib/net6.0/System.Diagnostics.EventLog.dll",
1888
- "lib/net6.0/System.Diagnostics.EventLog.xml",
1889
- "lib/net7.0/System.Diagnostics.EventLog.dll",
1890
- "lib/net7.0/System.Diagnostics.EventLog.xml",
1891
- "lib/net8.0/System.Diagnostics.EventLog.dll",
1892
- "lib/net8.0/System.Diagnostics.EventLog.xml",
1893
- "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
1894
- "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
1895
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
1896
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
1897
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
1898
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
1899
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
1900
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
1901
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
1902
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
1903
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
1904
- "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
1905
- "system.diagnostics.eventlog.nuspec",
1906
- "useSharedDesignerContext.txt"
1907
- ]
1908
- },
1909
- "System.IdentityModel.Tokens.Jwt/8.3.1": {
1910
- "sha512": "SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==",
1911
- "type": "package",
1912
- "path": "system.identitymodel.tokens.jwt/8.3.1",
1913
- "files": [
1914
- ".nupkg.metadata",
1915
- ".signature.p7s",
1916
- "README.md",
1917
- "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
1918
- "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
1919
- "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
1920
- "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
1921
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
1922
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
1923
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
1924
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
1925
- "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
1926
- "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml",
1927
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
1928
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
1929
- "system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512",
1930
- "system.identitymodel.tokens.jwt.nuspec"
1931
- ]
1932
- },
1933
- "System.Memory/4.5.5": {
1934
- "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
1935
- "type": "package",
1936
- "path": "system.memory/4.5.5",
1937
- "files": [
1938
- ".nupkg.metadata",
1939
- ".signature.p7s",
1940
- "LICENSE.TXT",
1941
- "THIRD-PARTY-NOTICES.TXT",
1942
- "lib/net461/System.Memory.dll",
1943
- "lib/net461/System.Memory.xml",
1944
- "lib/netcoreapp2.1/_._",
1945
- "lib/netstandard1.1/System.Memory.dll",
1946
- "lib/netstandard1.1/System.Memory.xml",
1947
- "lib/netstandard2.0/System.Memory.dll",
1948
- "lib/netstandard2.0/System.Memory.xml",
1949
- "ref/netcoreapp2.1/_._",
1950
- "system.memory.4.5.5.nupkg.sha512",
1951
- "system.memory.nuspec",
1952
- "useSharedDesignerContext.txt",
1953
- "version.txt"
1954
- ]
1955
- },
1956
- "System.Runtime.CompilerServices.Unsafe/5.0.0": {
1957
- "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
1958
- "type": "package",
1959
- "path": "system.runtime.compilerservices.unsafe/5.0.0",
1960
- "files": [
1961
- ".nupkg.metadata",
1962
- ".signature.p7s",
1963
- "Icon.png",
1964
- "LICENSE.TXT",
1965
- "THIRD-PARTY-NOTICES.TXT",
1966
- "lib/net45/System.Runtime.CompilerServices.Unsafe.dll",
1967
- "lib/net45/System.Runtime.CompilerServices.Unsafe.xml",
1968
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
1969
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
1970
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
1971
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
1972
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
1973
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
1974
- "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
1975
- "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
1976
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
1977
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
1978
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
1979
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
1980
- "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll",
1981
- "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml",
1982
- "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
1983
- "system.runtime.compilerservices.unsafe.nuspec",
1984
- "useSharedDesignerContext.txt",
1985
- "version.txt"
1986
- ]
1987
- },
1988
- "System.Text.Encodings.Web/8.0.0": {
1989
- "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
1990
- "type": "package",
1991
- "path": "system.text.encodings.web/8.0.0",
1992
- "files": [
1993
- ".nupkg.metadata",
1994
- ".signature.p7s",
1995
- "Icon.png",
1996
- "LICENSE.TXT",
1997
- "THIRD-PARTY-NOTICES.TXT",
1998
- "buildTransitive/net461/System.Text.Encodings.Web.targets",
1999
- "buildTransitive/net462/_._",
2000
- "buildTransitive/net6.0/_._",
2001
- "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
2002
- "lib/net462/System.Text.Encodings.Web.dll",
2003
- "lib/net462/System.Text.Encodings.Web.xml",
2004
- "lib/net6.0/System.Text.Encodings.Web.dll",
2005
- "lib/net6.0/System.Text.Encodings.Web.xml",
2006
- "lib/net7.0/System.Text.Encodings.Web.dll",
2007
- "lib/net7.0/System.Text.Encodings.Web.xml",
2008
- "lib/net8.0/System.Text.Encodings.Web.dll",
2009
- "lib/net8.0/System.Text.Encodings.Web.xml",
2010
- "lib/netstandard2.0/System.Text.Encodings.Web.dll",
2011
- "lib/netstandard2.0/System.Text.Encodings.Web.xml",
2012
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
2013
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
2014
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
2015
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
2016
- "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
2017
- "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
2018
- "system.text.encodings.web.8.0.0.nupkg.sha512",
2019
- "system.text.encodings.web.nuspec",
2020
- "useSharedDesignerContext.txt"
2021
- ]
2022
- },
2023
- "System.Text.Json/8.0.0": {
2024
- "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
2025
- "type": "package",
2026
- "path": "system.text.json/8.0.0",
2027
- "files": [
2028
- ".nupkg.metadata",
2029
- ".signature.p7s",
2030
- "Icon.png",
2031
- "LICENSE.TXT",
2032
- "PACKAGE.md",
2033
- "THIRD-PARTY-NOTICES.TXT",
2034
- "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
2035
- "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
2036
- "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
2037
- "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
2038
- "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
2039
- "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
2040
- "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
2041
- "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
2042
- "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
2043
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
2044
- "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
2045
- "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
2046
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
2047
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
2048
- "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
2049
- "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
2050
- "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
2051
- "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
2052
- "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
2053
- "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
2054
- "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
2055
- "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
2056
- "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
2057
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
2058
- "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
2059
- "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
2060
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
2061
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
2062
- "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
2063
- "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
2064
- "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
2065
- "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
2066
- "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
2067
- "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
2068
- "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
2069
- "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
2070
- "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
2071
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
2072
- "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
2073
- "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
2074
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
2075
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
2076
- "buildTransitive/net461/System.Text.Json.targets",
2077
- "buildTransitive/net462/System.Text.Json.targets",
2078
- "buildTransitive/net6.0/System.Text.Json.targets",
2079
- "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
2080
- "buildTransitive/netstandard2.0/System.Text.Json.targets",
2081
- "lib/net462/System.Text.Json.dll",
2082
- "lib/net462/System.Text.Json.xml",
2083
- "lib/net6.0/System.Text.Json.dll",
2084
- "lib/net6.0/System.Text.Json.xml",
2085
- "lib/net7.0/System.Text.Json.dll",
2086
- "lib/net7.0/System.Text.Json.xml",
2087
- "lib/net8.0/System.Text.Json.dll",
2088
- "lib/net8.0/System.Text.Json.xml",
2089
- "lib/netstandard2.0/System.Text.Json.dll",
2090
- "lib/netstandard2.0/System.Text.Json.xml",
2091
- "system.text.json.8.0.0.nupkg.sha512",
2092
- "system.text.json.nuspec",
2093
- "useSharedDesignerContext.txt"
2094
- ]
2095
- }
2096
- },
2097
- "projectFileDependencyGroups": {
2098
- "net8.0": [
2099
- "Microsoft.Extensions.Hosting >= 8.0.0",
2100
- "MongoDB.Bson >= 3.1.0",
2101
- "System.IdentityModel.Tokens.Jwt >= 8.3.1"
2102
- ]
2103
- },
2104
- "packageFolders": {
2105
- "C:\\Users\\Truong\\.nuget\\packages\\": {}
2106
- },
2107
- "project": {
2108
- "version": "1.0.0",
2109
- "restore": {
2110
- "projectUniqueName": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\Blueprint.Core.csproj",
2111
- "projectName": "Blueprint.Core",
2112
- "projectPath": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\Blueprint.Core.csproj",
2113
- "packagesPath": "C:\\Users\\Truong\\.nuget\\packages\\",
2114
- "outputPath": "D:\\@Projects\\@@ Blueprint\\NetWebAPIBlueprint\\Blueprint\\BlueprintTemplate\\Blueprint.Core\\obj\\",
2115
- "projectStyle": "PackageReference",
2116
- "configFilePaths": [
2117
- "C:\\Users\\Truong\\AppData\\Roaming\\NuGet\\NuGet.Config",
2118
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
2119
- ],
2120
- "originalTargetFrameworks": [
2121
- "net8.0"
2122
- ],
2123
- "sources": {
2124
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
2125
- "C:\\Program Files\\dotnet\\library-packs": {},
2126
- "https://api.nuget.org/v3/index.json": {}
2127
- },
2128
- "frameworks": {
2129
- "net8.0": {
2130
- "targetAlias": "net8.0",
2131
- "projectReferences": {}
2132
- }
2133
- },
2134
- "warningProperties": {
2135
- "warnAsError": [
2136
- "NU1605"
2137
- ]
2138
- },
2139
- "restoreAuditProperties": {
2140
- "enableAudit": "true",
2141
- "auditLevel": "low",
2142
- "auditMode": "direct"
2143
- }
2144
- },
2145
- "frameworks": {
2146
- "net8.0": {
2147
- "targetAlias": "net8.0",
2148
- "dependencies": {
2149
- "Microsoft.Extensions.Hosting": {
2150
- "target": "Package",
2151
- "version": "[8.0.0, )"
2152
- },
2153
- "MongoDB.Bson": {
2154
- "target": "Package",
2155
- "version": "[3.1.0, )"
2156
- },
2157
- "System.IdentityModel.Tokens.Jwt": {
2158
- "target": "Package",
2159
- "version": "[8.3.1, )"
2160
- }
2161
- },
2162
- "imports": [
2163
- "net461",
2164
- "net462",
2165
- "net47",
2166
- "net471",
2167
- "net472",
2168
- "net48",
2169
- "net481"
2170
- ],
2171
- "assetTargetFallback": true,
2172
- "warn": true,
2173
- "frameworkReferences": {
2174
- "Microsoft.NETCore.App": {
2175
- "privateAssets": "all"
2176
- }
2177
- },
2178
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.302/PortableRuntimeIdentifierGraph.json"
2179
- }
2180
- }
2181
- }
2182
- }