From 72af853455d55f220fbf70284777704e18f9b410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Mon, 6 Jul 2026 06:59:08 +0200 Subject: [PATCH 1/2] Add slnf and slnx solution formats to run-tests skill (#857) Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- plugins/dotnet-test/skills/run-tests/SKILL.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/dotnet-test/skills/run-tests/SKILL.md b/plugins/dotnet-test/skills/run-tests/SKILL.md index d273bd0669..2dfb6748d1 100644 --- a/plugins/dotnet-test/skills/run-tests/SKILL.md +++ b/plugins/dotnet-test/skills/run-tests/SKILL.md @@ -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`) | @@ -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/ From 5b42f67d2a31611bb45e6e07c18a0292279a2ff4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 19:27:22 +0000 Subject: [PATCH 2/2] Merge clean, 0 conflicts, 16 plugins, 98 skills --- opencode.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opencode.json b/opencode.json index 2a5c3a869b..512607b310 100644 --- a/opencode.json +++ b/opencode.json @@ -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"]} },