|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFramework>net8.0</TargetFramework> |
| 4 | + <TargetFramework>net9.0</TargetFramework> |
5 | 5 | <PackageReadmeFile>README.md</PackageReadmeFile>
|
6 | 6 | <GenerateDocumentationFile>true</GenerateDocumentationFile>
|
7 | 7 | </PropertyGroup>
|
8 | 8 |
|
9 | 9 | <ItemGroup>
|
10 |
| - <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0"> |
| 10 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0"> |
11 | 11 | <PrivateAssets>all</PrivateAssets>
|
12 | 12 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
13 | 13 | </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" /> |
17 | 17 | <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" /> |
19 | 19 | </ItemGroup>
|
20 | 20 |
|
21 | 21 | <PropertyGroup>
|
22 | 22 | <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> |
25 | 25 | <Authors>Jon P Smith</Authors>
|
26 | 26 | <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>
|
27 | 27 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
28 | 28 | <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 |
32 | 30 | </PackageReleaseNotes>
|
33 | 31 | <Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright>
|
34 | 32 | <PackageTags>Entity Framework Core, Database</PackageTags>
|
|
42 | 40 |
|
43 | 41 | <ItemGroup>
|
44 | 42 | <None Include="EfSchemaCompareNuGetIcon128.png" Pack="true" PackagePath="\" />
|
45 |
| - <None Include="..\README.md" Pack="true" PackagePath="\"/> |
| 43 | + <None Include="..\README.md" Pack="true" PackagePath="\" /> |
46 | 44 | </ItemGroup>
|
47 | 45 |
|
48 | 46 | </Project>
|
0 commit comments