Skip to content

Commit 5e9a6d3

Browse files
committed
Version 8.0.0
1 parent cdc83e0 commit 5e9a6d3

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

EfSchemaCompare/EfSchemaCompare.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-rc.2.23480.1">
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0">
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0-rc.2.23480.1" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0-rc.2.23479.6" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
1717
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
18-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0-rc.2" />
18+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
1919
</ItemGroup>
2020

2121
<PropertyGroup>
@@ -28,7 +28,7 @@
2828
<Description>Useful tool if you are changing the schema of your database's schema outside of EF Core' migrations, say by using SQL change scripts. See readme file on github.</Description>
2929
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
3030
<PackageReleaseNotes>
31-
- Supports .NET 8-rc.2 - please try this version and report any problems
31+
- Supports .NET 8
3232
- NEW FEATURE: Now compares all EF Core database providers, but some database providers may show incorrect match errors
3333
- BREAKING CHANGE: You need to add the Microsoft.EntityFrameworkCore.Design NuGet to your
3434
- Bug Fix: Fix to issue #21

ReleaseNotes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release notes
22

3+
## 8.0.0
4+
5+
- Supports .NET 8
6+
- NEW FEATURE: Now compares all EF Core database providers, but some database providers may show incorrect match errors
7+
- BREAKING CHANGE: You need to add the Microsoft.EntityFrameworkCore.Design NuGet to your
8+
39
## 8.0.0-rc2-0002
410

511
- Supports .NET 8-rc.2 - please try this version and report any problems

Test/Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="EfCore.TestSupport" Version="8.0.0-rc1-0001" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0-rc.2.23480.1" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
10+
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
1414
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
1515
<PackageReference Include="xunit" Version="2.5.1" />

0 commit comments

Comments
 (0)