HelloDotNetCajun/.vscode/launch.json
2026-04-09 22:19:40 -05:00

23 lines
973 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
// This project is a .NET console application.
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net10.0/ConsoleApp1.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
// Enable launching the same program multiple times with different arguments.
// This requires setting up a compound launch configuration.
"internalConsoleOptions": "openOnSessionStart"
}
]
}