Skip to content

Commit 3503033

Browse files
authored
Merge pull request #25 from thompson-tomo/chore/#24_ConditionOnPackages
#24 Place conditions on STJ so only for net standard
2 parents c4b64c9 + c76e812 commit 3503033

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/GeoJSON.Text/GeoJSON.Text.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,17 @@
2626

2727
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
2828
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
29-
</PropertyGroup>
29+
</PropertyGroup>
3030

3131
<ItemGroup>
3232
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
3333
<PrivateAssets>all</PrivateAssets>
3434
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3535
</PackageReference>
3636
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
37+
</ItemGroup>
38+
39+
<ItemGroup Condition="'$(TargetFramework)'== 'netStandard2.0'">
3740
<PackageReference Include="System.Text.Json" Version="6.0.1" />
3841
</ItemGroup>
3942

0 commit comments

Comments
 (0)