From dee1a776bf33b10a16fa3c3df3b083ded1792fbe Mon Sep 17 00:00:00 2001 From: ClemensF Date: Fri, 27 Sep 2019 23:20:13 +0200 Subject: [PATCH] Version 4.14. Added support for .NET Core 3 --- MapControl/WPF.Core/MapControl.WPF.Core.csproj | 4 +++- MapControl/WPF/ImageFileCache.WPF.cs | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MapControl/WPF.Core/MapControl.WPF.Core.csproj b/MapControl/WPF.Core/MapControl.WPF.Core.csproj index 400ae4a2..b1820b17 100644 --- a/MapControl/WPF.Core/MapControl.WPF.Core.csproj +++ b/MapControl/WPF.Core/MapControl.WPF.Core.csproj @@ -12,12 +12,14 @@ 4.14.0 XAML Map Control Library Copyright © 2019 Clemens Fischer - false + true XAML.MapControl.Core TRACE;NET_CORE + none + false diff --git a/MapControl/WPF/ImageFileCache.WPF.cs b/MapControl/WPF/ImageFileCache.WPF.cs index 4a80618f..d1f32d3d 100644 --- a/MapControl/WPF/ImageFileCache.WPF.cs +++ b/MapControl/WPF/ImageFileCache.WPF.cs @@ -185,7 +185,6 @@ namespace MapControl.Caching stream.Write(Encoding.ASCII.GetBytes("EXPIRES:"), 0, 8); stream.Write(BitConverter.GetBytes(imageCacheItem.Expiration.Ticks), 0, 8); } - #if !NET_CORE var fileSecurity = File.GetAccessControl(path); fileSecurity.AddAccessRule(fullControlRule);