Skip to content

Commit

Permalink
.NET updates to 6.0.32 and 8.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Jul 10, 2024
1 parent 585f73a commit 12a5069
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/Core/RevEng.Core.60/RevEng.Core.60.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<PackageReference Include="FirebirdSql.EntityFrameworkCore.Firebird" Version="9.1.1" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="6.0.31" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.32" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.32" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="6.0.32" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="6.0.29" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="6.0.29" />
<PackageReference Include="Oracle.EntityFrameworkCore" Version="6.21.140" />
Expand Down
8 changes: 4 additions & 4 deletions src/Core/RevEng.Core.80/RevEng.Core.80.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
<PackageReference Include="EntityFrameworkCore.Sqlite.NodaTime" Version="8.0.1" />
<PackageReference Include="FirebirdSql.EntityFrameworkCore.Firebird" Version="11.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.HierarchyId" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="8.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.HierarchyId" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="8.0.7" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NodaTime" Version="8.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.4" />
<PackageReference Include="Oracle.EntityFrameworkCore" Version="8.23.40" />
Expand Down
8 changes: 4 additions & 4 deletions src/GUI/RevEng.Shared/Providers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ public static List<NuGetPackage> GetNeededPackages(DatabaseType databaseType, bo
switch (codeGenerationMode)
{
case CodeGenerationMode.EFCore6:
pkgVersion = "6.0.31";
pkgVersion = "6.0.32";
break;
case CodeGenerationMode.EFCore8:
pkgVersion = "8.0.6";
pkgVersion = "8.0.7";
break;
}

Expand Down Expand Up @@ -224,10 +224,10 @@ public static List<NuGetPackage> GetNeededPackages(DatabaseType databaseType, bo
switch (codeGenerationMode)
{
case CodeGenerationMode.EFCore6:
pkgVersion = "6.0.31";
pkgVersion = "6.0.32";
break;
case CodeGenerationMode.EFCore8:
pkgVersion = "8.0.6";
pkgVersion = "8.0.7";
break;
}

Expand Down

0 comments on commit 12a5069

Please sign in to comment.