Skip to content

Commit a9cab33

Browse files
committed
Stop targeting netcoreapp5.0, use SDK 5.0.0-preview5
Turns out we don't need netcoreapp5.0 at the moment.
1 parent 4bd4115 commit a9cab33

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build
33
on: [push, pull_request]
44

55
env:
6-
dotnet_sdk_version: '5.0.100-preview.2.20176.6'
6+
dotnet_sdk_version: '5.0.100-preview.5.20279.10'
77
postgis_version: 3
88
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
99

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "5.0.100-preview.2.20176.6"
3+
"version": "5.0.100-preview.5.20279.10"
44
}
55
}

src/Npgsql.GeoJSON/Npgsql.GeoJSON.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Yoh Deadfall, Shay Rojansky</Authors>
44
<Description>GeoJSON plugin for Npgsql, allowing mapping of PostGIS geometry types to GeoJSON types.</Description>
55
<PackageTags>npgsql postgresql postgres postgis geojson spatial ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
<SignAssembly>false</SignAssembly>
99
</PropertyGroup>

src/Npgsql.Json.NET/Npgsql.Json.NET.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Shay Rojansky</Authors>
44
<Description>Json.NET plugin for Npgsql, allowing transparent serialization/deserialization of JSON objects directly to and from the database.</Description>
55
<PackageTags>npgsql postgresql json postgres ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
</PropertyGroup>
99
<ItemGroup>

src/Npgsql.LegacyPostgis/Npgsql.LegacyPostgis.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Shay Rojansky</Authors>
44
<Description>PostGIS plugin for Npgsql, allowing mapping of PostGIS types to the legacy types (e.g. PostgisPoint).</Description>
55
<PackageTags>npgsql postgresql postgres postgis spatial geometry geography ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
</PropertyGroup>
99
<ItemGroup>

src/Npgsql.NetTopologySuite/Npgsql.NetTopologySuite.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Yoh Deadfall, Shay Rojansky</Authors>
44
<Description>NetTopologySuite plugin for Npgsql, allowing mapping of PostGIS geometry types to NetTopologySuite types.</Description>
55
<PackageTags>npgsql postgresql postgres postgis nts ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
<NoWarn>$(NoWarn);NU5104</NoWarn>
99
</PropertyGroup>

src/Npgsql.NodaTime/Npgsql.NodaTime.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Shay Rojansky</Authors>
44
<Description>NodaTime plugin for Npgsql, allowing mapping of PostgreSQL date/time types to NodaTime types.</Description>
55
<PackageTags>npgsql postgresql postgres nodatime date time ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
</PropertyGroup>
99
<ItemGroup>

src/Npgsql.RawPostgis/Npgsql.RawPostgis.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Authors>Shay Rojansky</Authors>
44
<Description>PostGIS plugin for Npgsql, allowing raw byte access to PostGIS ypes.</Description>
55
<PackageTags>npgsql postgresql postgres postgis spatial geometry geography ado ado.net database sql</PackageTags>
6-
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
6+
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
77
<TargetFrameworks Condition="'$(DeveloperBuild)' != 'True'">net461;netstandard2.0</TargetFrameworks>
88
</PropertyGroup>
99
<ItemGroup>

0 commit comments

Comments
 (0)