Skip to content

Commit a5801fa

Browse files
committed
Migrates solution file to SLNX format
Replaces the traditional Visual Studio .sln file with the new .slnx solution file format and updates all related references in build scripts and GitHub workflows.
1 parent 9eed707 commit a5801fa

File tree

5 files changed

+59
-331
lines changed

5 files changed

+59
-331
lines changed

.github/copilot-instructions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ The MaterialDesignInXamlToolkit is a **theme library** for WPF applications that
4141
### Build and Test
4242
```powershell
4343
# Restore dependencies
44-
dotnet restore MaterialDesignToolkit.Full.sln
44+
dotnet restore MaterialDesignToolkit.Full.slnx
4545
4646
# Build (requires Windows)
47-
dotnet build MaterialDesignToolkit.Full.sln --configuration Release --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True
47+
dotnet build MaterialDesignToolkit.Full.slnx --configuration Release --no-restore -p:Platform="Any CPU" -p:TreatWarningsAsErrors=True
4848
4949
# Run tests
50-
dotnet test MaterialDesignToolkit.Full.sln --configuration Release --no-build
50+
dotnet test MaterialDesignToolkit.Full.slnx --configuration Release --no-build
5151
5252
# Build NuGet packages
5353
.\build\BuildNugets.ps1 -MDIXVersion "x.x.x" -MDIXColorsVersion "x.x.x" -MDIXMahAppsVersion "x.x.x"

.github/workflows/build_artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: windows-latest
2424

2525
env:
26-
solution: MaterialDesignToolkit.Full.sln
26+
solution: MaterialDesignToolkit.Full.slnx
2727

2828
steps:
2929
- uses: actions/checkout@v5

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
type: string
1010

1111
env:
12-
solution: MaterialDesignToolkit.Full.sln
12+
solution: MaterialDesignToolkit.Full.slnx
1313
GITHUB_TOKEN: ${{ secrets.SA_PAT }}
1414

1515
defaults:

0 commit comments

Comments
 (0)