Migrate solution files to slnx format #4497
Merged
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
.slnx
solution files, removing old solution files, and updating the.gitattributes
file.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.slnx
file.build/CI.slnx
: Added a new solution file in the.slnx
format, organizing projects and files into folders.Code updates:
build/build/Tasks/Build.cs
: Updated the solution file path to use the new.slnx
file.build/build/Tasks/BuildPrepare.cs
: Updated the solution file path to use the new.slnx
file.Other changes:
.gitattributes
: Added a new file extension.slnx
for solution files.