Skip to content

Commit 6eee820

Browse files
committed
Fix GitHub workflows to target slnx solution
1 parent f4ee01e commit 6eee820

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
dotnet-version: ${{ env.DOTNET_VERSION }}
2525

2626
- name: Restore dependencies
27-
run: dotnet restore Presidio.sln
27+
run: dotnet restore Presidio.slnx
2828

2929
- name: Verify formatting
30-
run: dotnet format Presidio.sln --verify-no-changes
30+
run: dotnet format Presidio.slnx --verify-no-changes
3131

3232
- name: Build
33-
run: dotnet build Presidio.sln --configuration Release --no-restore
33+
run: dotnet build Presidio.slnx --configuration Release --no-restore
3434

3535
- name: Test
36-
run: dotnet test Presidio.sln --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage"
36+
run: dotnet test Presidio.slnx --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage"
3737

3838
- name: Upload coverage reports to Codecov
3939
if: always()

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ jobs:
3333
echo "Version from Directory.Build.props: $VERSION"
3434
3535
- name: Restore dependencies
36-
run: dotnet restore Presidio.sln
36+
run: dotnet restore Presidio.slnx
3737

3838
- name: Build
39-
run: dotnet build Presidio.sln --configuration Release --no-restore
39+
run: dotnet build Presidio.slnx --configuration Release --no-restore
4040

4141
- name: Test
42-
run: dotnet test Presidio.sln --configuration Release --verbosity normal --no-build
42+
run: dotnet test Presidio.slnx --configuration Release --verbosity normal --no-build
4343

4444
- name: Pack NuGet packages
45-
run: dotnet pack Presidio.sln --configuration Release --no-build --output ./artifacts
45+
run: dotnet pack Presidio.slnx --configuration Release --no-build --output ./artifacts
4646

4747
- name: Upload artifacts
4848
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)