chore: exploring netcoredbg config

This commit is contained in:
Stevan Freeborn
2025-10-01 11:29:14 -05:00
parent 8bc3a59ca1
commit 034318a7db
3 changed files with 21 additions and 14 deletions
+3 -1
View File
@@ -178,9 +178,11 @@ return {
}
end
local netcoredbgCommand = vim.fn.stdpath("data") .. "/mason/packages/netcoredbg/netcoredbg/netcoredbg.exe"
dap.adapters.coreclr = {
type = "executable",
command = "C:/Users/sfree/AppData/Local/nvim-data/mason/packages/netcoredbg/netcoredbg/netcoredbg.exe",
command = netcoredbgCommand ,
args = { "--interpreter=vscode" },
}
+1
View File
@@ -1,6 +1,7 @@
return {
{
"williamboman/mason.nvim",
lazy = false,
config = function()
require("mason").setup()
end,