forked from MaxRev-Dev/gdal.netcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdalcore.windowsruntime.csproj
65 lines (60 loc) · 2.41 KB
/
gdalcore.windowsruntime.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Platform>x64</Platform>
<DebugType>portable</DebugType>
<TargetFrameworks>netstandard2.0;netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<Copyright>MaxRev © 2019</Copyright>
<Authors>MaxRev</Authors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>MaxRev.Gdal.WindowsRuntime.Minimal</PackageId>
<PackageTags>gdal;netcore;docker</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/MaxRev-Dev/gdal.netcore</RepositoryUrl>
<Version>3.0.1.36</Version>
<Description>GDAL (3.0.1) minimal libraries package.
Drivers included PROJ (6.1.1), GEOS (3.8), SQLITE3, CURL, JPEG, PNG, HDF4, HDF5
Targets win-x64 runtime. Target Frameworks: netstandard2.0, netcoreapp2.1, netcoreapp2.2, netcoreapp3.0, netcoreapp3.1.
</Description>
<AssemblyName>MaxRev.Gdal.WindowsRuntime.Minimal</AssemblyName>
<RootNamespace />
<PackageReleaseNotes>- Fixed missing VC runtime libraries
- Fixed missing mingw64 dependency library for libgeos
- GDAL 3.0.1
- Sync build with linux runtime
- now also targets netcoreapp3.0</PackageReleaseNotes>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<Compile Remove="**/*.cs"></Compile>
<Compile Remove="test/**"></Compile>
<None Remove="build-win/**" />
<None Remove="build-unix/**" />
<None Include="runtimes/win-x64/**">
<PackagePath>runtimes/win-x64/</PackagePath>
<Pack>true</Pack>
</None>
<Content Include="gdalplugins/**">
<PackagePath>runtimes/win-x64/native/gdalplugins/</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="test\**" />
<None Remove="test\**" />
</ItemGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<BumpLabel>dev</BumpLabel>
<BumpLabelDigits>3</BumpLabelDigits>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<BumpRevision>True</BumpRevision>
<BumpResetLabel>dev</BumpResetLabel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MSBump" Version="2.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>