Change AppVeyor to be a build system#1322
Merged
pascalberger merged 1 commit intocake-contrib:developfrom Nov 30, 2025
Merged
Conversation
fe0bc52 to
d63fbf9
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR refactors the AppVeyor addin from a "Pull Request System" to a "Build Server System", aligning it with its actual functionality of reporting issues to AppVeyor builds rather than managing pull requests. The change involves renaming classes, namespaces, and reorganizing the solution structure.
Key changes:
- Renamed
Cake.Issues.PullRequests.AppVeyortoCake.Issues.Build.AppVeyoracross all namespaces, classes, and files - Changed inheritance from
BasePullRequestSystemtoBaseBuildServerSystemwith corresponding method signature updates - Reorganized solution structure to place AppVeyor under
/Build System/instead of/Pull Request Systems/ - Updated all NuGet package specifications and documentation to reflect the new naming
Reviewed Changes
Copilot reviewed 19 out of 19 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/Cake.Issues.slnx | Moved AppVeyor projects from "/Pull Request Systems/" to "/Build System/" folder in solution |
| src/Cake.Issues.PullRequests.AppVeyor.Tests/Cake.Issues.PullRequests.AppVeyor.Tests.csproj | Removed old test project file |
| src/Cake.Issues.Build/BuildServerAliasConstants.cs | Added new BuildServerCakeAliasCategory constant and improved documentation |
| src/Cake.Issues.Build.AppVeyor/packages.lock.json | Updated project reference from cake.issues.pullrequests to cake.issues.build |
| src/Cake.Issues.Build.AppVeyor/IIssueExtensions.cs | Changed namespace from Cake.Issues.PullRequests.AppVeyor to Cake.Issues.Build.AppVeyor |
| src/Cake.Issues.Build.AppVeyor/Cake.Issues.Build.AppVeyor.csproj | Updated project reference from PullRequests to Build |
| src/Cake.Issues.Build.AppVeyor/AppVeyorBuildsAliases.cs | Updated namespace, class names, category constants, and documentation examples |
| src/Cake.Issues.Build.AppVeyor/AppVeyorBuildSettings.cs | Changed namespace to Cake.Issues.Build.AppVeyor |
| src/Cake.Issues.Build.AppVeyor/AppVeyorBuildServerSystem.cs | Renamed class from AppVeyorPullRequestSystem to AppVeyorBuildServerSystem and updated method signature |
| src/Cake.Issues.Build.AppVeyor.Tests/packages.lock.json | Updated dependency references to reflect new project names |
| src/Cake.Issues.Build.AppVeyor.Tests/CakeContextFixture.cs | Changed namespace to Cake.Issues.Build.AppVeyor.Tests |
| src/Cake.Issues.Build.AppVeyor.Tests/Cake.Issues.Build.AppVeyor.Tests.csproj | Created new test project file with correct references |
| src/Cake.Issues.Build.AppVeyor.Tests/AppVeyorBuildSettingsTests.cs | Changed namespace to Cake.Issues.Build.AppVeyor.Tests |
| src/Cake.Issues.Build.AppVeyor.Tests/AppVeyorBuildServerSystemTests.cs | Renamed test class and updated all references to new class name |
| nuspec/nuget/Cake.Issues.Build.AppVeyor.nuspec | Updated package ID, dependencies, and file references to new naming |
| nuspec/nuget/Cake.Issues.Build.AppVeyor.md | Updated package reference from PullRequests to Build |
| nuspec/nuget/Cake.Frosting.Issues.Build.AppVeyor.targets | Updated namespace using directive to new namespace |
| nuspec/nuget/Cake.Frosting.Issues.Build.AppVeyor.nuspec | Updated package ID, dependencies, and file references for Frosting variant |
| nuspec/nuget/Cake.Frosting.Issues.Build.AppVeyor.md | Updated package reference from PullRequests to Build |
7f210e0 to
88c8246
Compare
88c8246 to
a6d9c14
Compare
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.
Changes AppVeyor to a build server integration