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
2 changes: 1 addition & 1 deletion opencode.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://opencode.ai/config.json",

"mcp": {
"binlog": {"type":"local","command":["dotnet","dnx","Microsoft.AITools.BinlogMcp","--yes"],"enabled":true}
"binlog": {"enabled":true,"type":"local","command":["dotnet","dnx","Microsoft.AITools.BinlogMcp","--yes"]}

},

Expand Down
4 changes: 3 additions & 1 deletion plugins/dotnet-test/skills/run-tests/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Detect the test platform and framework, run tests, and apply filters using `dotn

| Input | Required | Description |
|-------|----------|-------------|
| Project or solution path | No | Path to the test project (.csproj) or solution (.sln). Defaults to current directory. |
| Project or solution path | No | Path to the test project (.csproj) or solution (.sln, .slnf, .slnx). Defaults to current directory. |
| Filter expression | No | Filter expression to select specific tests |
| Target framework | No | Target framework moniker to run against (e.g., `net8.0`) |

Expand Down Expand Up @@ -154,6 +154,8 @@ dotnet test --project path/to/

# Run all tests in a solution (sln, slnf, slnx)
dotnet test --solution path/to/MySolution.sln
dotnet test --solution path/to/MySolution.slnf
dotnet test --solution path/to/MySolution.slnx

# Run all tests in a directory containing a solution
dotnet test --solution path/to/
Expand Down
Loading