-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
61 lines (53 loc) · 2.57 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<!-- essential build info -->
<TargetFramework>net8.0</TargetFramework>
<UseArtifactsOutput>true</UseArtifactsOutput>
<Platofrms>x64</Platofrms>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix>rc.3</VersionSuffix>
<AssemblyVersion>2.0.0.800</AssemblyVersion>
<FileVersion>2.0.0.800</FileVersion>
<Configurations>Debug;Release</Configurations>
<!-- metadata -->
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Gigas002</Authors>
<Company>Gigas002</Company>
<Description>Library to create tiles from GeoTiff images. Analogue of gdal2tiles.py on C#. Supports x64 windows and linux.</Description>
<Copyright>Copyright © Gigas002 2023</Copyright>
<PackageProjectUrl>https://gigas002.github.io/GTiff2Tiles</PackageProjectUrl>
<RepositoryUrl>https://github.com/Gigas002/GTiff2Tiles</RepositoryUrl>
<PackageReleaseNotes>https://github.com/Gigas002/GTiff2Tiles/blob/master/CHANGELOG.md</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<PackageTags>gtiff2tiles gdal2tiles tif tiff geotiff gdal tile maptiler</PackageTags>
<!-- additional build props -->
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!-- resources -->
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<PackageIcon>Icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- TODO: this is ignored -->
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile> -->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- TODO: for future generations -->
<!-- <PublishAot>true</PublishAot> -->
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE.txt" Pack="true" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\Resources\Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>