Skip to content

Commit 613eaa7

Browse files
committed
fix(case): rename ARCP.{UnitTests,IntegrationTests} dirs to Arcp.*; fix test workflow
- git rm --cached / git add to consolidate uppercase ARCP.UnitTests/ and ARCP.IntegrationTests/ into mixed-case Arcp.UnitTests/ and Arcp.IntegrationTests/ in the git index, matching the paths already referenced in ARCP.slnx. Invisible on macOS (case-insensitive FS) but creates a split directory on Linux that causes MSB3202. - Update .github/workflows/test.yml: ARCP.sln → ARCP.slnx (Restore, Format check, Build steps) tests/ARCP.UnitTests/ARCP.UnitTests.csproj → tests/Arcp.UnitTests/Arcp.UnitTests.csproj (Test step)
1 parent e7a903d commit 613eaa7

11 files changed

Lines changed: 4 additions & 4 deletions

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,17 +65,17 @@ jobs:
6565
${{ runner.os }}-nuget-
6666
6767
- name: Restore
68-
run: dotnet restore ARCP.sln
68+
run: dotnet restore ARCP.slnx
6969

7070
- name: Format check
71-
run: dotnet format ARCP.sln --verify-no-changes --no-restore
71+
run: dotnet format ARCP.slnx --verify-no-changes --no-restore
7272

7373
- name: Build
74-
run: dotnet build ARCP.sln --configuration Release --no-restore
74+
run: dotnet build ARCP.slnx --configuration Release --no-restore
7575

7676
- name: Test
7777
run: >
78-
dotnet test tests/ARCP.UnitTests/ARCP.UnitTests.csproj
78+
dotnet test tests/Arcp.UnitTests/Arcp.UnitTests.csproj
7979
--configuration Release
8080
--no-build
8181
--verbosity normal

tests/ARCP.IntegrationTests/ARCP.IntegrationTests.csproj renamed to tests/Arcp.IntegrationTests/Arcp.IntegrationTests.csproj

File renamed without changes.
File renamed without changes.

tests/ARCP.IntegrationTests/ProvisionedCredentialTests.cs renamed to tests/Arcp.IntegrationTests/ProvisionedCredentialTests.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)