Temporarily disabled debugging capabilities

This commit is contained in:
Fred Drake
2025-03-19 00:57:52 -04:00
parent 13c170f19a
commit c8ec1f4495
4 changed files with 44 additions and 44 deletions
+9 -9
View File
@@ -1,12 +1,12 @@
{ pkgs, ... }: {
extraConfigLua = ''
local dap = require('dap')
{pkgs, ...}: {
# extraConfigLua = ''
# local dap = require('dap')
dap.adapters.coreclr = {
type = 'executable',
command = '${pkgs.netcoredbg}/bin/netcoredbg',
args = {'--interpreter=vscode'}
}
# dap.adapters.coreclr = {
# type = 'executable',
# command = '${pkgs.netcoredbg}/bin/netcoredbg',
# args = {'--interpreter=vscode'}
# }
'';
# '';
}