- Updated NuGet packages across projects for compatibility and bug fixes - Switched to Microsoft.OpenApi and refactored Swagger setup - Added AES encryption/decryption for connection strings - Stored encrypted DB/cache connection strings in config - Improved encryption reliability in Program.cs - Added AutoMapper to multiple projects for mapping support - Enhanced security and code maintainability
42 lines
1.9 KiB
XML
42 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<DocumentationFile>PortBlog.API.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Asp.Versioning.Mvc" Version="8.1.1" />
|
|
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.1" />
|
|
<PackageReference Include="AutoMapper" Version="16.1.1" />
|
|
<PackageReference Include="BCrypt.Net-Next" Version="4.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.5" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.OpenApi" Version="2.4.1" />
|
|
<PackageReference Include="Otp.NET" Version="1.4.1" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
|
|
<PackageReference Include="Razor.Templating.Core" Version="3.1.0" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
|
<PackageReference Include="serilog.sinks.console" Version="6.1.1" />
|
|
<PackageReference Include="serilog.sinks.file" Version="7.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Images\**" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\KBR.Cache\KBR.Cache.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|