Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ dotnet build SharedCode.sln
# Run all tests
dotnet test SharedCode.sln

# Run tests with verbose output and GitHub Actions logging
dotnet test --logger GitHubActions --verbosity normal SharedCode.sln
# Run tests with verbose output
dotnet test SharedCode.sln --verbosity normal
```
Comment on lines 27 to 32

## Code Conventions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
dotnet-version: 10.0.x

- name: Run Tests
run: dotnet test --logger GitHubActions --verbosity normal SharedCode.sln
run: dotnet test SharedCode.sln --verbosity normal

semantic-release:
needs: test
Expand Down
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"test": {
"runner": "Microsoft.Testing.Platform"
}
}
Loading