Skip to content

Commit fbb1eb5

Browse files
adding ContinuousIntegrationBuild to project
using netstandard for building instead of coreapp
1 parent 108a1ed commit fbb1eb5

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/GeoJSON.Text.Test.Benchmark/GeoJSON.Text.Test.Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5;net6</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net5;net6</TargetFrameworks>
66
<ImplicitUsings>disable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<SignAssembly>False</SignAssembly>

src/GeoJSON.Text/GeoJSON.Text.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5;net6</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net5;net6</TargetFrameworks>
55
<LangVersion>Latest</LangVersion>
66
<Description>.Net types for the GeoJSON RFC to be used with System.Text.Json</Description>
77
<Authors>Matt Hunt</Authors>
88
<Company>GeoJSON.Text</Company>
9-
<Copyright>Copyright © Matt Hunt, Xavier Fischer and Contributors, 2014 - 2021</Copyright>
9+
<Copyright>Copyright © Matt Hunt and Contributors, 2014 - 2021</Copyright>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<Version>0.1.0</Version>
1212
<PackageProjectUrl>https://github.com/GeoJSON-Net/GeoJSON.Text</PackageProjectUrl>
@@ -22,6 +22,10 @@
2222
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2323
</PropertyGroup>
2424

25+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
26+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
27+
</PropertyGroup>
28+
2529
<ItemGroup>
2630
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
2731
<PackageReference Include="System.Text.Json" Version="6.0.1" />

0 commit comments

Comments
 (0)