Skip to content

Commit

Permalink
Update default NuGet and runtime versions to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
stil committed Dec 10, 2023
1 parent d454a7e commit 35a58b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Efmig/Migrations/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ void InitializeProfileSetupViewModel(ProfileSetupWindowViewModel setupViewModel,
{
setupViewModel.WindowTitle = existingProfile != null ? "Edit profile" : "Create new profile";
setupViewModel.ProfileName = existingProfile?.Name ?? "";
setupViewModel.DotnetEfVersionSelected = existingProfile?.DotnetEfVersion ?? "7.0.3";
setupViewModel.EfCoreDesignVersionSelected = existingProfile?.EfCoreDesignVersion ?? "7.0.3";
setupViewModel.RuntimeVersionSelected = existingProfile?.RuntimeVersion ?? "net7.0";
setupViewModel.DotnetEfVersionSelected = existingProfile?.DotnetEfVersion ?? "8.0.0";
setupViewModel.EfCoreDesignVersionSelected = existingProfile?.EfCoreDesignVersion ?? "8.0.0";
setupViewModel.RuntimeVersionSelected = existingProfile?.RuntimeVersion ?? "net8.0";
setupViewModel.DbContextCsprojPath = existingProfile?.DbContextCsprojPath ?? "";
setupViewModel.DbContextFullName = existingProfile?.DbContextFullName ?? "";
setupViewModel.DbContextConfigCode =
Expand Down

0 comments on commit 35a58b1

Please sign in to comment.