Merged
Conversation
…o 109-road-to-aspire
Closed
There was a problem hiding this comment.
Pull Request Overview
This pull request modernizes the CI/CD workflows and solution structure as part of migrating to .NET Aspire. The changes remove legacy infrastructure components and introduce a new unified deployment approach with updated service architecture.
- Removes 5 legacy GitHub Actions workflows and creates a new unified Azure Developer CLI workflow targeting .NET 9.0
- Removes LemonBot.Web project and associated test infrastructure entirely
- Introduces new .NET Aspire-based projects including KITT.AppHost, KITT.ServiceDefaults, and modular web applications
Reviewed Changes
Copilot reviewed 211 out of 250 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/* |
Removed legacy workflows and added unified Azure dev workflow |
LemonBot.sln |
Updated project references for new Aspire-based structure |
tests/LemonBot.Web.Test.Integration/* |
Removed entire integration test project |
src/LemonBot.Web/* |
Removed legacy web application |
src/KITT.Web.App/* |
Restructured into separate client/server projects |
src/KITT.Cms.Web.* |
New CMS API and components for content management |
src/KITT.Proposals.Web.* |
New proposals API and components |
src/KITT.ServiceDefaults/* |
New Aspire service defaults |
tests/KITT.Web.Testing/* |
New testing infrastructure |
Files not reviewed (14)
- src/KITT.Cms.Web.App/Resources/Components/ScheduleForm.Designer.cs: Language not supported
- src/KITT.Cms.Web.App/Resources/Components/StreamingStats.Designer.cs: Language not supported
- src/KITT.Cms.Web.App/Resources/Pages/Streamings/Import.Designer.cs: Language not supported
- src/KITT.Cms.Web.App/Resources/Pages/Streamings/Index.Designer.cs: Language not supported
- src/KITT.Cms.Web.App/Resources/Pages/Streamings/Schedule.Designer.cs: Language not supported
- src/KITT.Cms.Web.App/Resources/Pages/Streamings/StreamingDetail.Designer.cs: Language not supported
- src/KITT.Proposals.Web.App/Resources/Components/ProposalDetailDialog.Designer.cs: Language not supported
- src/KITT.Proposals.Web.App/Resources/Components/ProposalsStats.Designer.cs: Language not supported
- src/KITT.Proposals.Web.App/Resources/Pages/Index.Designer.cs: Language not supported
- src/KITT.Web.App/KITT.Web.App.Client/Resources/Components/MessageComposer.Designer.cs: Language not supported
- src/KITT.Web.App/KITT.Web.App.Client/Resources/Components/MessageEditorDialog.Designer.cs: Language not supported
- src/KITT.Web.App/KITT.Web.App.Client/Resources/Pages/CreateNewSettings.Designer.cs: Language not supported
- src/KITT.Web.App/KITT.Web.App.Client/Resources/Pages/Settings.Designer.cs: Language not supported
- src/KITT.Web.App/KITT.Web.App.Client/Resources/Shared/NavMenu.Designer.cs: Language not supported
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
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 pull request makes significant updates to the CI/CD workflows and the solution structure to modernize the build/deploy process and reorganize the codebase. The main changes include removing legacy GitHub Actions workflows, introducing a new unified workflow for build, deploy, and database updates, upgrading to .NET 9.0 for CI tasks, and restructuring the solution to add new projects while removing or relocating others.
CI/CD Workflow Modernization:
albx-kitt,build-and-test,kitt-bot,kitt-bot-api,kitt-telegram) to streamline the CI/CD process. [1] [2] [3] [4] [5].github/workflows/azure-dev.ymlthat handles build, deployment, and database updates using Azure Developer CLI (azd) and supports federated Azure credentials. This workflow targets .NET 9.0 and includes infrastructure provisioning and deployment steps.Solution Structure and Project Organization:
LemonBot.sln) to remove references to several old projects and test projects, such asLemonBot.Web,KITT.Web.App, and related test projects. [1] [2] [3] [4]KITT.Cms.Web.Api,KITT.Cms.Web.Models,KITT.Web.Shared,KITT.AppHost,KITT.ServiceDefaults,KITT.Web.App(new path),KITT.Web.App.Client,KITT.Cms.Web.App,KITT.Proposals.Web.Api,KITT.Proposals.Web.Models,KITT.Proposals.Web.App,KITT.Cms.Web.Api.Test,KITT.Web.Testing,KITT.Support.Seeder, andKITT.Services.These changes collectively modernize the build and deployment process, align the workflows with current Azure and .NET best practices, and update the solution structure to support new development directions.