Skip to content

Commit 40869f6

Browse files
committed
Version 9.0.0
1 parent cb75b06 commit 40869f6

File tree

5 files changed

+30
-24
lines changed

5 files changed

+30
-24
lines changed

DataLayer/DataLayer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
8+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
99
</ItemGroup>
1010

1111
</Project>
Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,32 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<PackageReadmeFile>README.md</PackageReadmeFile>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0">
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
15-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.0" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />
1717
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
18-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
18+
<PackageReference Include="System.Text.Json" Version="9.0.0" />
1919
</ItemGroup>
2020

2121
<PropertyGroup>
2222
<PackageId>EfCore.SchemaCompare</PackageId>
23-
<PackageVersion>8.2.0</PackageVersion>
24-
<Version>8.2.0</Version>
23+
<PackageVersion>9.0.0</PackageVersion>
24+
<Version>9.0.0</Version>
2525
<Authors>Jon P Smith</Authors>
2626
<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>
2727
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2828
<PackageReleaseNotes>
29-
- The ExtraInDatabase errors didn't correctly say what part of the database (e.g. "Table", "Column") was extra. This is fixed.
30-
- NOTE: If you have ignored some ExtraInDatabase errors you our old ignored ExtraInDatabase might need updating to the new (correct format) pattern.
31-
- New boolean 'AlwaysRunStage2' in the CompareEfSqlConfig. If set to 'true', then Stage 2 will always run, even if there are non-ignored errors. See issue #38, which made me add this new feature.
29+
- .NET 9 version
3230
</PackageReleaseNotes>
3331
<Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright>
3432
<PackageTags>Entity Framework Core, Database</PackageTags>
@@ -42,7 +40,7 @@
4240

4341
<ItemGroup>
4442
<None Include="EfSchemaCompareNuGetIcon128.png" Pack="true" PackagePath="\" />
45-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
43+
<None Include="..\README.md" Pack="true" PackagePath="\" />
4644
</ItemGroup>
4745

4846
</Project>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ If you are changing the schema of your database's schema outside of EF Core' mig
44

55
The first number in the version number of this library defines what version of NET framework it works for. e.g.
66

7-
- EfCore.SchemaCompare version 8.?.? works with to NET 8.
8-
- EfCore.SchemaCompare version 7.?.? works with to NET 7 ... an so
7+
- EfCore.SchemaCompare version 8.?.? works with to NET 9.
8+
- EfCore.SchemaCompare version 7.?.? works with to NET 8 ... an so
99

1010
**WARNING**: Version 8 contains a **BREAKING CHANGE**. You need to add the Microsoft.EntityFrameworkCore.Design NuGet to your application when using this library. This is needed as the EfCore.SchemaCompare library now supports multiple database providers does - see [What database providers does it support](https://github.com/JonPSmith/EfCore.SchemaCompare/blob/master/README.md#what-database-providers-does-it-support).
1111

ReleaseNotes.md

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

3+
## 9.0.0
4+
5+
- .NET 9 version
6+
37
## 8.2.0
48

59
- The ExtraInDatabase errors didn't correctly say what part of the database (e.g. "Table", "Column") was extra. This is fixed.

Test/Test.csproj

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="EfCore.TestSupport" Version="8.0.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.2" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.2" />
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
10+
<PackageReference Include="EfCore.TestSupport" Version="9.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
12+
<PrivateAssets>all</PrivateAssets>
13+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
14+
</PackageReference>
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1418
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
15-
<PackageReference Include="xunit" Version="2.5.3" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
19+
<PackageReference Include="xunit" Version="2.9.2" />
20+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
1721
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1822
<PrivateAssets>all</PrivateAssets>
1923
</PackageReference>
20-
<PackageReference Include="coverlet.collector" Version="6.0.0">
24+
<PackageReference Include="coverlet.collector" Version="6.0.2">
2125
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2226
<PrivateAssets>all</PrivateAssets>
2327
</PackageReference>

0 commit comments

Comments
 (0)