Skip to content

Commit

Permalink
Missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Oct 22, 2023
1 parent 1313db1 commit d3122fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/GUI/RevEng.Shared/Providers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,18 @@ public static List<NuGetPackage> GetNeededPackages(DatabaseType databaseType, bo
});
}

if (useNodaTime && codeGenerationMode != CodeGenerationMode.EFCore8)
if (useNodaTime)
{
pkgVersion = "7.0.0";
switch (codeGenerationMode)
{
case CodeGenerationMode.EFCore6:
pkgVersion = "6.0.1";
break;

case CodeGenerationMode.EFCore8:
pkgVersion = "8.0.0-rc.2.23480.1";
break;
}

packages.Add(new NuGetPackage
Expand Down

0 comments on commit d3122fb

Please sign in to comment.