Project URLs

This commit is contained in:
ClemensFischer 2025-02-25 18:19:57 +01:00
parent d0d95b8f90
commit 4d9422294b
2 changed files with 2 additions and 3 deletions

View file

@ -13,8 +13,7 @@ using System.Threading.Tasks;
namespace MapControl.Caching
{
/// <summary>
/// IDistributedCache implementation based on FileDb, a free and simple No-SQL database by EzTools Software.
/// See http://www.eztools-software.com/tools/filedb/.
/// IDistributedCache implementation based on FileDb, https://github.com/eztools-software/FileDb.
/// </summary>
public sealed class FileDbCache : IDistributedCache, IDisposable
{

View file

@ -13,7 +13,7 @@ using System.Threading.Tasks;
namespace MapControl.Caching
{
/// <summary>
/// IDistributedCache implementation based on System.Data.SQLite.
/// IDistributedCache implementation based on System.Data.SQLite, https://system.data.sqlite.org/.
/// </summary>
public sealed class SQLiteCache : IDistributedCache, IDisposable
{