Upgrade from .NET Core 2.1 to .NET 8.0 LTS - #2
Open
ghostyappbeta[bot] wants to merge 1 commit into
Open
Conversation
- Update target framework from netcoreapp2.1 to net8.0 - Migrate from Startup.cs pattern to minimal hosting model in Program.cs - Update Swashbuckle.AspNetCore from 4.0.1 to 6.5.0 (Info -> OpenApiInfo) - Remove deprecated packages: Microsoft.AspNetCore.App, Razor.Design, CodeGeneration.Design - Replace Newtonsoft.Json with default System.Text.Json in ConfigurationController - Migrate from UseSignalR/UseMvc to endpoint routing (MapHub/MapControllers) - Update Dockerfile to use mcr.microsoft.com/dotnet images - Update SignalR client from @aspnet/signalr@1.0.3 to @microsoft/signalr@8.0.0 - Update solution file Visual Studio version references - Update README.md to reference .NET 8.0 SDK - Add CHANGELOG.md documenting the upgrade Co-authored-by: Michael Landi <1298427+michaellandi@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request was generated by @kiro-agent 👻
Comment with /kiro fix to address specific feedback or /kiro all to address everything.
Learn about Kiro autonomous agent
Summary
Upgrades EventMapr from .NET Core 2.1 to .NET 8.0 LTS, the current long-term support release.
Changes
netcoreapp2.1→net8.0Startup.csclass to the .NET 8 minimal hosting model (WebApplication.CreateBuilder) inProgram.cs; deletedStartup.csMicrosoft.AspNetCore.App/Razor.Design/CodeGeneration.Design; updated Swashbuckle4.0.1→6.5.0; enabledNullableandImplicitUsingsNewtonsoft.JsontoSystem.Text.JsoninConfigurationControllermcr.microsoft.com/dotnet/sdk:8.0andmcr.microsoft.com/dotnet/aspnet:8.0@aspnet/signalr@1.0.3to@microsoft/signalr@8.0.0inlibman.jsonTesting
Code-reviewed only. The sandbox environment did not have the .NET SDK installed and had no external network access, so build/test verification was not possible. A build should be run after merge to confirm everything compiles cleanly.