- 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
20 lines
603 B
XML
20 lines
603 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="16.1.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="10.0.5" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\KBR.Share.Lite\KBR.Shared.Lite.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|