NET-15: Create .NET Core 6 Web Application Project in COG-GTM/SampleMvcWebApp#1
Open
devin-ai-integration[bot] wants to merge 2 commits intomasterfrom
Open
NET-15: Create .NET Core 6 Web Application Project in COG-GTM/SampleMvcWebApp#1devin-ai-integration[bot] wants to merge 2 commits intomasterfrom
devin-ai-integration[bot] wants to merge 2 commits intomasterfrom
Conversation
- Create new SampleWebApp.Core project with SDK-style format targeting net6.0 - Enable nullable reference types and implicit usings - Implement minimal hosting model in Program.cs - Set up standard .NET 6 folder structure (Controllers/, Views/, Models/, wwwroot/) - Configure environment-specific appsettings files (Development, Staging, Production) - Create Properties/launchSettings.json with multiple environment profiles - Add project to existing solution file - Project references to DataLayer/ServiceLayer commented out for future migration phase - Project builds successfully with dotnet build Co-Authored-By: Shawn Azman <shawn.d.azman@gmail.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
Update the README with the progress |
- Add comprehensive migration progress section at top of README - Document completed Phase 1 foundation work (SampleWebApp.Core project) - List next steps for ongoing migration phases - Include project structure overview showing both old and new projects - Reference NET-15 ticket and PR #1 for traceability - Maintain original application documentation below migration section Addresses GitHub PR comment requesting README update with progress. Co-Authored-By: Shawn Azman <shawn.d.azman@gmail.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.
NET-15: Create .NET Core 6 Web Application Project in COG-GTM/SampleMvcWebApp
Summary
This PR implements the foundation phase of migrating the existing .NET Framework 4.5.1 MVC application to .NET 6. Creates a new
SampleWebApp.Coreproject using modern .NET 6 patterns while preserving the existing application for parallel development and gradual migration.Key Changes:
SampleWebApp.Core/with SDK-style project format targeting net6.0The new project is intentionally minimal with basic HomeController returning simple content. Project references to DataLayer/ServiceLayer are commented out since those remain .NET Framework projects for now.
Review & Testing Checklist for Human
This is foundational infrastructure work with medium risk - please verify the following 2 items:
Build & Runtime Verification: Confirm
SampleWebApp.Corebuilds successfully (dotnet build SampleWebApp.Core/SampleWebApp.Core.csproj) and runs in Development environment (dotnet run --project SampleWebApp.Core --environment Development). Test that http://localhost:[port] returns "SampleWebApp.Core - .NET 6 Web Application is running!"Configuration Migration Accuracy: Compare
SampleWebApp.Core/appsettings.jsonconnection string and ApplicationSettings against originalSampleWebApp/Web.config(lines 13-22) to ensure values were migrated correctly, especially the database connection string and HostTypeString/DatabaseLoginPrefix settingsNotes
Session Details: