Open
Description
I tried to configure launch.json
by the following JSON.
{
"version": "0.2.0",
"configurations": [
{
"name": "C#: audio-processor Debug",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/audio-processor.csproj",
}
]
}
I couldn't find a way to configure additional command arguments to my program. Just like:
dotnet run -- --args1=1 --args2=2 "filename"
Is it possible to have a args
to the configuration?