Skip to content

Commit 46e92c7

Browse files
Merge pull request #10 from Task-Manager-Pro/codex/fix-msbuild-error-in-github-actions
Fix GitHub Actions restore step
2 parents 81442e5 + 759a5e4 commit 46e92c7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
with:
1818
dotnet-version: '8.0.x'
1919
- name: Restore dependencies
20-
run: dotnet restore
20+
run: dotnet restore Todo.sln
2121
- name: Build
22-
run: dotnet build --no-restore
22+
run: dotnet build Todo.sln --no-restore
2323
- name: Test
24-
run: dotnet test --no-build --verbosity normal
24+
run: dotnet test Todo.sln --no-build --verbosity normal

0 commit comments

Comments
 (0)