-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathDirectory.Build.props
31 lines (29 loc) · 1.33 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
<Project>
<PropertyGroup>
<VersionPrefix>8.0.0</VersionPrefix>
<LangVersion>latest</LangVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<AnalysisLevel>latest</AnalysisLevel>
<Authors>Xavier Fischer, Frédéric Aubin</Authors>
<PackageTags>elevation, dem, heightmap, stl, gltf, terrain</PackageTags>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<Copyright>Xavier Fischer, Frédéric Aubin and Contributors</Copyright>
<Company>DEM.Net Elevation API</Company>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/dem-net/DEM.Net</PackageProjectUrl>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageIcon>DEMnet_64.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<None Include="..\DEMnet_64.png" Pack="true" PackagePath="" />
<None Include="..\LICENSE.md" Pack="true" Link="LICENSE.md" PackagePath="\" />
<None Include="..\README.md" Link="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>