mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Version 4.14. Added support for .NET Core 3
This commit is contained in:
parent
23778280e1
commit
dee1a776bf
|
|
@ -12,12 +12,14 @@
|
||||||
<Version>4.14.0</Version>
|
<Version>4.14.0</Version>
|
||||||
<Description>XAML Map Control Library</Description>
|
<Description>XAML Map Control Library</Description>
|
||||||
<Copyright>Copyright © 2019 Clemens Fischer</Copyright>
|
<Copyright>Copyright © 2019 Clemens Fischer</Copyright>
|
||||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
<PackageId>XAML.MapControl.Core</PackageId>
|
<PackageId>XAML.MapControl.Core</PackageId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
<DefineConstants>TRACE;NET_CORE</DefineConstants>
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
<DebugSymbols>false</DebugSymbols>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
|
|
||||||
|
|
@ -185,7 +185,6 @@ namespace MapControl.Caching
|
||||||
stream.Write(Encoding.ASCII.GetBytes("EXPIRES:"), 0, 8);
|
stream.Write(Encoding.ASCII.GetBytes("EXPIRES:"), 0, 8);
|
||||||
stream.Write(BitConverter.GetBytes(imageCacheItem.Expiration.Ticks), 0, 8);
|
stream.Write(BitConverter.GetBytes(imageCacheItem.Expiration.Ticks), 0, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !NET_CORE
|
#if !NET_CORE
|
||||||
var fileSecurity = File.GetAccessControl(path);
|
var fileSecurity = File.GetAccessControl(path);
|
||||||
fileSecurity.AddAccessRule(fullControlRule);
|
fileSecurity.AddAccessRule(fullControlRule);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue