Support encrypted cache conn strings & update dependencies

Moved DecryptConnectionString to KBR.Shared.Extensions for reuse and improved configuration access. Added Encryption property to CacheOptions and appsettings for conditional decryption of cache connection strings. Updated ServiceCollectionExtensions to decrypt SQL Server cache connection strings when needed. Upgraded NuGet packages across projects to latest .NET 8/10.0.x versions. Included minor code cleanups and OpenApiSecurityScheme improvements.
This commit is contained in:
2026-02-15 14:22:22 +05:30
parent 4ebd93d39b
commit 2533b5298f
9 changed files with 40 additions and 23 deletions
+2
View File
@@ -4,6 +4,8 @@
{
public string Provider { get; set; } = null!;
public bool? Encryption { get; set; } = false;
public string? ConnectionString { get; set; }
}
}