-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathGeoJSON.Net.csproj
More file actions
23 lines (21 loc) · 1.09 KB
/
GeoJSON.Net.csproj
File metadata and controls
23 lines (21 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net462;net6.0;net8.0</TargetFrameworks>
<Description>.Net types for the GeoJSON RFC to be used with Json.Net</Description>
<Authors>Matt Hunt;Joerg Battermann;Xavier Fischer;Janus Weil</Authors>
<Company>GeoJSON.Net</Company>
<Copyright>Copyright © Joerg Battermann, Matt Hunt, Xavier Fischer, Janus Weil and Contributors, 2014 - 2024</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>1.4.0</Version>
<PackageProjectUrl>https://github.com/GeoJSON-Net/GeoJSON.Net</PackageProjectUrl>
<RepositoryUrl>https://github.com/GeoJSON-Net/GeoJSON.Net.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>geojson;geo;json;geolocation</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>