-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathGeoJSON.Text.csproj
More file actions
39 lines (34 loc) · 1.6 KB
/
GeoJSON.Text.csproj
File metadata and controls
39 lines (34 loc) · 1.6 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;netstandard2.0</TargetFrameworks>
<LangVersion>10</LangVersion>
<Description>.Net types for the GeoJSON RFC to be used with System.Text.Json</Description>
<Authors>Matt Hunt and Contributors</Authors>
<Company>GeoJSON.Text</Company>
<Copyright>Copyright © Matt Hunt and Contributors, 2014 - 2024</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.1.0</Version>
<PackageProjectUrl>https://github.com/GeoJSON-Net/GeoJSON.Text</PackageProjectUrl>
<RepositoryUrl>https://github.com/GeoJSON-Net/GeoJSON.Text.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>geojson;geo;json;geolocation</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../key.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'== 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
</Project>