Migrate from ASP.NET MVC 5 to ASP.NET Core 7 Web API #7
  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.
  
    
  
    
Migrate from ASP.NET MVC 5 to ASP.NET Core 8 Web API
Summary
This PR completes a major architectural migration from ASP.NET MVC 5 (.NET Framework 4.8) to ASP.NET Core 8 Web API while maintaining compatibility with the existing AngularJS frontend. The migration represents a fundamental shift from server-side MVC with Razor views to a decoupled API-first architecture with static file serving.
Key Changes:
Review & Testing Checklist for Human
This is a high-risk architectural migration requiring thorough verification:
/api/landingand/api/landing/health) return expected JSON responsesAllowAnyOrigin()is appropriate for your deployment environment (may need restriction for production)Recommended Test Plan
dotnet build angularjs-aspnetcore-webapi.csprojdotnet run --project angularjs-aspnetcore-webapi.csproj/api/landingand/api/landing/healthNotes
Screenshots from testing:


The migration maintains full backward compatibility with the existing AngularJS frontend while modernizing the backend infrastructure. No database or external dependencies exist in this application, simplifying the migration scope.
Link to Devin run: https://app.devin.ai/sessions/d9321a364e884860a20631328b271c93
Requested by: Kevin Tang (@kevintang-windsurf)