|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
| 4 | + <PackageId>DEM.Net.Extension.Osm</PackageId> |
| 5 | + <Version>0.2.7.3</Version> |
| 6 | + <AssemblyVersion>0.2.7.3</AssemblyVersion> |
| 7 | + <Authors>Xavier Fischer</Authors> |
| 8 | + <Copyright>Xavier Fischer and Contributors</Copyright> |
| 9 | + <Owners>Xavier Fischer</Owners> |
| 10 | + <PackageProjectUrl>https://github.com/dem-net/DEM.Net.Extensions</PackageProjectUrl> |
| 11 | + <PackageReleaseNotes>Intial release</PackageReleaseNotes> |
| 12 | + <PackageTags>OSM, OpenStreetMap</PackageTags> |
| 13 | + <Title>DEM.Net.Extension.Osm</Title> |
| 14 | + <Product>DEM.Net Elevation API</Product> |
| 15 | + <Description>OpenStreetMap extension for DEM.Net</Description> |
| 16 | + <Summary>OpenStreetMap extension for DEM.Net</Summary> |
| 17 | + <RepositoryUrl>https://github.com/dem-net/DEM.Net.Extensions</RepositoryUrl> |
| 18 | + <RepositoryType>git</RepositoryType> |
| 19 | + <PackageLicenseExpression> |
| 20 | + </PackageLicenseExpression> |
| 21 | + <PackageIconUrl>https://raw.githubusercontent.com/dem-net/Resources/master/images/DEMnet_512.png</PackageIconUrl> |
| 22 | + <PackageIcon>DEMnet_64.png</PackageIcon> |
4 | 23 | <TargetFramework>netstandard2.0</TargetFramework>
|
| 24 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 25 | + <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
| 26 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 27 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
5 | 28 | </PropertyGroup>
|
6 | 29 |
|
| 30 | + |
| 31 | + <!-- Build package only in Release --> |
| 32 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release'"> |
| 33 | + <IncludeSymbols>true</IncludeSymbols> |
| 34 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 35 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 36 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 37 | + </PropertyGroup> |
| 38 | + <!-- Build package only in Release --> |
| 39 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug'"> |
| 40 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 41 | + <GenerateDocumentationFile>false</GenerateDocumentationFile> |
| 42 | + </PropertyGroup> |
| 43 | + |
7 | 44 | <ItemGroup>
|
8 | 45 | <Compile Remove="Extensions\IEnumerableExtensions.cs" />
|
9 | 46 | </ItemGroup>
|
10 | 47 |
|
| 48 | + <ItemGroup> |
| 49 | + <None Include="DEMnet_64.png" Pack="true" PackagePath="\" /> |
| 50 | + <None Include="..\..\DEM.Net\LICENSE.md" Link="LICENSE.md"> |
| 51 | + <PackagePath> |
| 52 | + </PackagePath> |
| 53 | + <Pack>True</Pack> |
| 54 | + </None> |
| 55 | + </ItemGroup> |
| 56 | + |
11 | 57 |
|
12 | 58 | <ItemGroup>
|
13 | 59 | <PackageReference Include="GeoJSON.Net" Version="1.2.15" />
|
| 60 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0"> |
| 61 | + <PrivateAssets>all</PrivateAssets> |
| 62 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 63 | + </PackageReference> |
14 | 64 | <PackageReference Include="protobuf-net" Version="2.4.4" />
|
15 | 65 | <PackageReference Include="System.Drawing.Common" Version="4.7.0" />
|
16 | 66 | </ItemGroup>
|
|
20 | 70 | <ProjectReference Include="..\..\DEM.Net\DEM.Net.Core\DEM.Net.Core.csproj" />
|
21 | 71 | <ProjectReference Include="..\..\DEM.Net\DEM.Net.glTF\DEM.Net.glTF.csproj" />
|
22 | 72 | </ItemGroup>
|
23 |
| - |
24 |
| - <ItemGroup> |
25 |
| - <Reference Include="SharpGLTF.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> |
26 |
| - </ItemGroup> |
27 | 73 | </Project>
|
0 commit comments