Migrate solution files to slnx format#4497
Merged
Merged
Conversation
Modernizes solution files by migrating from the old .sln format to the new .slnx format. This change streamlines the project structure and improves solution management.
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR migrates solution files to the new .slnx format and updates build tasks and workflows accordingly. Key changes include updating the solution file references in build tasks, modifying CI workflows to use the new build command format, and removing obsolete solution files.
Reviewed Changes
Copilot reviewed 6 out of 13 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| build/build/Tasks/BuildPrepare.cs | Updated solution file path from GitVersion.sln to GitVersion.slnx. |
| build/build/Tasks/Build.cs | Updated solution file path from GitVersion.sln to GitVersion.slnx. |
| .github/workflows/docs.yml | Changed the build command from an explicit solution file to building the directory. |
| .github/workflows/codeql-analysis.yml | Changed the build command from an explicit solution file to building the directory. |
| .github/workflows/_prepare.yml | Changed the build command from an explicit solution file to building the directory. |
Files not reviewed (7)
- .gitattributes: Language not supported
- build/CI.sln: Language not supported
- build/CI.slnx: Language not supported
- new-cli/GitVersion.sln: Language not supported
- new-cli/GitVersion.slnx: Language not supported
- src/GitVersion.sln: Language not supported
- src/GitVersion.slnx: Language not supported
Contributor
|
Thank you @arturcic for your contribution! |
Contributor
|
🎉 This issue has been resolved in version 6.3.0 🎉 Your GitReleaseManager bot 📦🚀 |
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 includes several changes to streamline the build process and update solution files. The most important changes include updating the build tasks to use the new
.slnxsolution files, removing old solution files, and updating the.gitattributesfile.Build process updates:
.github/workflows/_prepare.yml: Changed the build command to use the new solution file format..github/workflows/codeql-analysis.yml: Updated the build command to use the new solution file format..github/workflows/docs.yml: Updated the build command to use the new solution file format.Solution file updates:
build/CI.sln: Removed the old solution file and replaced it with a new.slnxfile.build/CI.slnx: Added a new solution file in the.slnxformat, organizing projects and files into folders.Code updates:
build/build/Tasks/Build.cs: Updated the solution file path to use the new.slnxfile.build/build/Tasks/BuildPrepare.cs: Updated the solution file path to use the new.slnxfile.Other changes:
.gitattributes: Added a new file extension.slnxfor solution files.