We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50ead9 commit cdcef61Copy full SHA for cdcef61
tests/GeoJson/GeoJson.csproj
@@ -1,9 +1,21 @@
1
-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk">
2
3
<PropertyGroup>
4
- <TargetFramework>net8.0</TargetFramework>
5
<ImplicitUsings>enable</ImplicitUsings>
6
<Nullable>enable</Nullable>
7
</PropertyGroup>
8
+ <Choose>
9
+ <When Condition="$(SIXLABORS_TESTING_PREVIEW) == true">
10
+ <PropertyGroup>
11
+ <TargetFrameworks>net9.0;net8.0</TargetFrameworks>
12
+ </PropertyGroup>
13
+ </When>
14
+ <Otherwise>
15
16
+ <TargetFrameworks>net8.0</TargetFrameworks>
17
18
+ </Otherwise>
19
+ </Choose>
20
+
21
</Project>
0 commit comments