Skip to content

Commit 174a0e3

Browse files
authored
Sync to EF 10.0.0-alpha.1.24620.1 (#3416)
Implement the new translation tests
1 parent 6068de4 commit 174a0e3

24 files changed

+5346
-984
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
pull_request:
1212

1313
env:
14-
dotnet_sdk_version: '9.0.100'
14+
dotnet_sdk_version: '10.0.100-alpha.1.24620.13'
1515
postgis_version: 3
1616
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
1717

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
- cron: '30 22 * * 6'
2828

2929
env:
30-
dotnet_sdk_version: '9.0.100'
30+
dotnet_sdk_version: '10.0.100-alpha.1.24620.13'
3131

3232
jobs:
3333
analyze:

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<VersionPrefix>10.0.0</VersionPrefix>
4+
<TargetFramework>net10.0</TargetFramework>
45
<LangVersion>latest</LangVersion>
56
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
67
<AnalysisLevel>latest</AnalysisLevel>

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<EFCoreVersion>10.0.0-alpha.1.24610.3</EFCoreVersion>
4-
<MicrosoftExtensionsVersion>10.0.0-alpha.1.24609.1</MicrosoftExtensionsVersion>
3+
<EFCoreVersion>10.0.0-alpha.1.24620.1</EFCoreVersion>
4+
<MicrosoftExtensionsVersion>10.0.0-alpha.1.24616.1</MicrosoftExtensionsVersion>
55
<NpgsqlVersion>9.0.2</NpgsqlVersion>
66
</PropertyGroup>
77

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "10.0.100-alpha.1.24620.13",
44
"rollForward": "latestMajor",
5-
"allowPrerelease": false
5+
"allowPrerelease": true
66
}
77
}

src/EFCore.PG.NTS/EFCore.PG.NTS.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<PropertyGroup>
33
<AssemblyName>Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite</AssemblyName>
44
<RootNamespace>Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite</RootNamespace>
5-
<TargetFramework>net8.0</TargetFramework>
6-
<TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFramework>
75

86
<Authors>Shay Rojansky</Authors>
97
<Description>NetTopologySuite PostGIS spatial support plugin for PostgreSQL/Npgsql Entity Framework Core provider.</Description>

src/EFCore.PG.NodaTime/EFCore.PG.NodaTime.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<PropertyGroup>
33
<AssemblyName>Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime</AssemblyName>
44
<RootNamespace>Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime</RootNamespace>
5-
<TargetFramework>net8.0</TargetFramework>
6-
<TargetFramework Condition="'$(DeveloperBuild)' == 'True'">net8.0</TargetFramework>
75

86
<Authors>Shay Rojansky</Authors>
97
<Description>NodaTime support plugin for PostgreSQL/Npgsql Entity Framework Core provider.</Description>

src/EFCore.PG/EFCore.PG.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<AssemblyName>Npgsql.EntityFrameworkCore.PostgreSQL</AssemblyName>
55
<RootNamespace>Npgsql.EntityFrameworkCore.PostgreSQL</RootNamespace>
6-
<TargetFramework>net8.0</TargetFramework>
76

87
<Authors>Shay Rojansky;Austin Drenski;Yoh Deadfall;</Authors>
98
<Description>PostgreSQL/Npgsql provider for Entity Framework Core.</Description>

test/Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<Import Project="..\Directory.Build.props" />
44

55
<PropertyGroup>
6-
<TargetFramework>net9.0</TargetFramework>
76
<IsPackable>false</IsPackable>
87
<GenerateDocumentationFile>false</GenerateDocumentationFile>
98

test/EFCore.PG.FunctionalTests/EFCore.PG.FunctionalTests.csproj

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

33
<PropertyGroup>
44
<AssemblyName>Npgsql.EntityFrameworkCore.PostgreSQL.FunctionalTests</AssemblyName>
5-
<RootNamespace>Npgsql.EntityFrameworkCore.PostgreSQL</RootNamespace>
5+
<RootNamespace>Microsoft.EntityFrameworkCore</RootNamespace>
66
<PreserveCompilationContext>true</PreserveCompilationContext>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)