Migrate all .NET Framework projects to .NET 8#13
Open
devin-ai-integration[bot] wants to merge 3 commits intomasterfrom
Open
Migrate all .NET Framework projects to .NET 8#13devin-ai-integration[bot] wants to merge 3 commits intomasterfrom
devin-ai-integration[bot] wants to merge 3 commits intomasterfrom
Conversation
- WinForms/EqDemoWinFormsNet4: Convert to SDK-style, net8.0-windows, EF Core 8.0 - Wpf/EqDemoWpfNet4: Convert to SDK-style, net8.0-windows, EF Core 8.0 - WinForms/EqDemoWinFormsNet6: Upgrade TFM from net6.0 to net8.0 - Wpf/EqDemoWpfNet6: Upgrade TFM from net6.0 to net8.0 - AspNet4/Mvc/AdvancedSearch: Convert to ASP.NET Core 8.0 with SDK-style project - Remove EF6 migrations, AssemblyInfo, Global.asax, Web.config - Add Program.cs, Startup.cs, appsettings.json for ASP.NET Core Co-Authored-By: parker.duff@codeium.com <pwjduff@gmail.com>
- WinForms/EqDemoWinFormsNet4: .NET 4.7.2 -> net8.0-windows (SDK-style) - Wpf/EqDemoWpfNet4: .NET 4.7.2 -> net8.0-windows (SDK-style) - WinForms/EqDemoWinFormsNet6: net6.0-windows -> net8.0-windows - Wpf/EqDemoWpfNet6: net6.0-windows -> net8.0-windows - AspNet4/Mvc/AdvancedSearch: .NET 4.8 -> ASP.NET Core 8.0 - AspNet4/Mvc/DataFiltering: .NET 4.6.1 -> ASP.NET Core 8.0 - AspNet4/Mvc/AdhocReporting: .NET 4.6.2 -> ASP.NET Core 8.0 - AspNet4/Mvc/AdhocReportingMetaData: .NET 4.6.1 -> ASP.NET Core 8.0 - AspNet4/Mvc/AdvancedSearch-Multilayered/FrontApp: .NET 4.6.1 -> ASP.NET Core 8.0 - AspNet4/Mvc/AdvancedSearch-Multilayered/ServiceApp: .NET 4.6.1 -> ASP.NET Core 8.0 - AspNet4/WebForms/AdvancedSearch: .NET 4.6.1 WebForms -> ASP.NET Core 8.0 Razor Pages - AspNet4/WebForms/VB.AdvancedSearch: VB.NET WebForms -> ASP.NET Core 8.0 (C#) Key changes: - Converted all .csproj to SDK-style format - EF6 -> EF Core 8.0.2 - ASP.NET MVC/WebForms -> ASP.NET Core with middleware - Global.asax -> Program.cs + Startup.cs - web.config -> appsettings.json - ConfigurationManager -> IConfiguration - HttpContext.Current -> DI - Korzh.EasyQuery upgraded to 7.4.0 (ASP.NET Core) Co-Authored-By: parker.duff@codeium.com <pwjduff@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:
|
… migration, rename VB project to C# Co-Authored-By: parker.duff@codeium.com <pwjduff@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.
Migrate all .NET Framework projects to .NET 8
Summary
Migrates all 12 .NET Framework projects in this repository to .NET 8 (latest LTS), following the provided migration playbook. This is a large structural migration touching every project in the repo.
Projects migrated:
Key technical changes:
.csprojfiles converted to SDK-style formatGlobal.asax→Program.cs+Startup.csweb.config→appsettings.jsonConfigurationManager→IConfiguration(DI)HttpContext.Current→ dependency injection@Html.EqHighLightFor/@Html.PageNavigatorhelpers → ASP.NET Core tag helpers (<eq-highlight-text>,<eq-page-navigator>)Updates since last revision
Build errors were discovered during local compilation and resolved:
MsSqlGate→SqlServerGateIdentityModels.cs, Account/Manage view folders, andViews/Web.configfilesAddDefaultIdentity→AddIdentity(AddDefaultIdentity not available in ASP.NET Core 8)UseSessionCache()→StoreQueryInCache = true(API changed in 7.4.0).vbproj→.csproj(code is now C#)Build status: 8 of 12 projects now compile successfully on Linux (WinForms/WPF projects require Windows to build).
Review & Testing Checklist for Human
(localdb)\MSSQLLocalDBwhich is Windows-only. CI/deployment may need different connection strings.Test Plan Recommendation
For each project:
dotnet buildon Windows - must succeed for all 12 projectsdotnet run- must start without errorsNotes