From 4d9422294ba8dff34cbc729a31c5610ec53f4019 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Tue, 25 Feb 2025 18:19:57 +0100 Subject: [PATCH] Project URLs --- Caches/FileDbCache/FileDbCache.cs | 3 +-- Caches/SQLiteCache/SQLiteCache.cs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Caches/FileDbCache/FileDbCache.cs b/Caches/FileDbCache/FileDbCache.cs index 3133822f..f84b72e4 100644 --- a/Caches/FileDbCache/FileDbCache.cs +++ b/Caches/FileDbCache/FileDbCache.cs @@ -13,8 +13,7 @@ using System.Threading.Tasks; namespace MapControl.Caching { /// - /// 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. /// public sealed class FileDbCache : IDistributedCache, IDisposable { diff --git a/Caches/SQLiteCache/SQLiteCache.cs b/Caches/SQLiteCache/SQLiteCache.cs index dd0a37f6..aba6f30d 100644 --- a/Caches/SQLiteCache/SQLiteCache.cs +++ b/Caches/SQLiteCache/SQLiteCache.cs @@ -13,7 +13,7 @@ using System.Threading.Tasks; namespace MapControl.Caching { /// - /// IDistributedCache implementation based on System.Data.SQLite. + /// IDistributedCache implementation based on System.Data.SQLite, https://system.data.sqlite.org/. /// public sealed class SQLiteCache : IDistributedCache, IDisposable {