Migrate to .NET 9 - #1
Open
douglasjordan2024 wants to merge 2 commits into
Open
Conversation
This commit upgrades the project from .NET 6 to .NET 9 with the following changes: ## Framework and SDK - Updated TargetFramework from net6.0 to net9.0 - Added global.json to pin SDK version to 9.0.203 - Updated GitHub Actions workflow to use .NET 9.0.x SDK ## Package Updates - Removed deprecated AutoMapper.Extensions.Microsoft.DependencyInjection - Replaced Microsoft.AspNetCore.Mvc.Versioning 5.0.0 with Asp.Versioning.Mvc 8.1.0 - Replaced Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer 5.0.0 with Asp.Versioning.Mvc.ApiExplorer 8.1.0 - Updated AutoMapper from 11.0.1 to 13.0.1 - Updated Microsoft.AspNetCore.Mvc.NewtonsoftJson from 6.0.8 to 9.0.0 - Updated Microsoft.EntityFrameworkCore.InMemory from 6.0.8 to 9.0.0 - Updated Swashbuckle.AspNetCore from 6.4.0 to 7.2.0 - Updated System.Linq.Dynamic.Core from 1.2.19 to 1.5.0 ## Code Changes - Updated namespace imports from Microsoft.AspNetCore.Mvc.Versioning to Asp.Versioning - Updated namespace imports from Microsoft.AspNetCore.Mvc.ApiExplorer to Asp.Versioning.ApiExplorer - Changed AddVersionedApiExplorer() to chained .AddApiExplorer() call in VersioningExtension - Added Asp.Versioning using statement to controllers ## Validation - Build: Successful - Runtime: Application starts without errors - API v1 and v2 endpoints: Functional - Swagger: Working in Development mode 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
- Added CLAUDE.md with project overview and architecture documentation - Added MigrationPlan.md with migration details - Added .claude/ directory with custom commands 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.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 commit upgrades the project from .NET 6 to .NET 9 with the following changes:
Framework and SDK
Package Updates
Code Changes
Validation
Generated with Claude Code