Phase 1: Convert project files to SDK-style format and migrate to .NET 6 #4
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.
Phase 1: Convert project files to SDK-style format and migrate to .NET 6
Summary
This PR implements Phase 1 of the .NET Framework 4.5.1 to .NET Core 6 migration by converting all project files to modern SDK-style format and migrating package management from packages.config to PackageReference format.
Key Changes:
v4.5.1tonet6.0across all projectsGenerateAssemblyInfo=false,EnableDefaultContentItems=false)System.Configuration.ConfigurationManager,Microsoft.Windows.Compatibility)Current Status:⚠️ The solution does not currently build - there are 4 compilation errors related to missing
System.Webtypes (HttpApplication,RouteCollection) that don't exist in .NET 6. This is expected for Phase 1 as code changes are planned for subsequent phases.Review & Testing Checklist for Human
Test Plan: Due to compilation failures, functional testing is not possible at this stage. The next phase should focus on resolving the System.Web dependency issues and updating code to use ASP.NET Core equivalents.
Notes
This is Phase 1 of a multi-phase migration plan. The project structure has been successfully modernized, but code changes will be required in Phase 2 to replace ASP.NET Framework-specific types with ASP.NET Core equivalents.
Link to Devin run: https://app.devin.ai/sessions/6bb3e4352c164fa4bacab472aa211b7b
Requested by: ben-windsurf (@ben-windsurf)