From ea3a23ef3e4bafd9ea6d27877460335be7335728 Mon Sep 17 00:00:00 2001 From: Christoph Schmidpeter Date: Sun, 28 Sep 2025 02:22:11 +0200 Subject: [PATCH] feat(lang/omnisharp): switch neotest adapter to vstest Prefer `neotest-vstest` over `neotest-dotnet`. Upstream for `neotest-dotnet` announced possible archiving and recommends a vstest-based approach for more robust, framework-agnostic discovery and execution (incl. future Microsoft.Testing.Platform support). Refs: Issafalcon/neotest-dotnet#142. --- lua/lazyvim/plugins/extras/lang/omnisharp.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/omnisharp.lua b/lua/lazyvim/plugins/extras/lang/omnisharp.lua index 07ba0490..e66304ac 100644 --- a/lua/lazyvim/plugins/extras/lang/omnisharp.lua +++ b/lua/lazyvim/plugins/extras/lang/omnisharp.lua @@ -104,12 +104,12 @@ return { "nvim-neotest/neotest", optional = true, dependencies = { - "Issafalcon/neotest-dotnet", + "Nsidorenco/neotest-vstest", }, opts = { adapters = { - ["neotest-dotnet"] = { - -- Here we can set options for neotest-dotnet + ["neotest-vstest"] = { + -- Here we can set options for neotest-vstest }, }, },