Skip to content

Instantly share code, notes, and snippets.

View dduede's full-sized avatar
💤

Dennis Düde dduede

💤
View GitHub Profile
@CriDos
CriDos / launch.json
Last active April 28, 2025 04:12
Debugging .NET Projects in Cursor with netcoredbg: launch.json Example
{
"version": "0.2.0",
"configurations": [
{
"name": "Client (Debug)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-client-debug",
"program": "${workspaceFolder}/Build/Debug/HardClient.exe",
"args": [],