From 24850446e71740bd0c2196de7a3cdb65502ab9dd Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Sat, 3 Feb 2024 21:12:05 +0100 Subject: [PATCH] Assembly Info --- Caches/FileDbCache/FileDbCache.csproj | 11 +++++++++++ Caches/SQLiteCache/SQLiteCache.cs | 2 +- Caches/SQLiteCache/SQLiteCache.csproj | 11 +++++++++++ SampleApps/WpfApplication/WpfApplication.csproj | 2 -- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/Caches/FileDbCache/FileDbCache.csproj b/Caches/FileDbCache/FileDbCache.csproj index 56f24ad7..4fe9d3e2 100644 --- a/Caches/FileDbCache/FileDbCache.csproj +++ b/Caches/FileDbCache/FileDbCache.csproj @@ -1,6 +1,17 @@  netstandard2.0 + MapControl.Caching + XAML Map Control FileDbCache Library + XAML Map Control + 9.0.0 + Clemens Fischer + Copyright © 2024 Clemens Fischer + true + ..\..\MapControl.snk + false + false + XAML.MapControl.FileDbCache diff --git a/Caches/SQLiteCache/SQLiteCache.cs b/Caches/SQLiteCache/SQLiteCache.cs index 6cfdfb82..80b99168 100644 --- a/Caches/SQLiteCache/SQLiteCache.cs +++ b/Caches/SQLiteCache/SQLiteCache.cs @@ -32,7 +32,7 @@ namespace MapControl.Caching path = Path.Combine(path, "TileCache.sqlite"); } - var connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path)); + connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path)); connection.Open(); using (var command = new SQLiteCommand("create table if not exists items (key text primary key, expiration integer, buffer blob)", connection)) diff --git a/Caches/SQLiteCache/SQLiteCache.csproj b/Caches/SQLiteCache/SQLiteCache.csproj index c4c12774..0fc6d269 100644 --- a/Caches/SQLiteCache/SQLiteCache.csproj +++ b/Caches/SQLiteCache/SQLiteCache.csproj @@ -1,6 +1,17 @@  netstandard2.0 + MapControl.Caching + XAML Map Control SQLiteCache Library + XAML Map Control + 9.0.0 + Clemens Fischer + Copyright © 2024 Clemens Fischer + true + ..\..\MapControl.snk + false + false + XAML.MapControl.SQLiteCache diff --git a/SampleApps/WpfApplication/WpfApplication.csproj b/SampleApps/WpfApplication/WpfApplication.csproj index 4bf2337f..c41df505 100644 --- a/SampleApps/WpfApplication/WpfApplication.csproj +++ b/SampleApps/WpfApplication/WpfApplication.csproj @@ -21,8 +21,6 @@ - -