vscode-csharp icon indicating copy to clipboard operation
vscode-csharp copied to clipboard

[BUG] Launch adds hyphen and breaks path

Open WardenGnaw opened this issue 1 year ago • 1 comments

Originally from https://github.com/microsoft/vscode-dotnettools/issues/1425 by @georg-eckert-zeiss

Describe the Issue

When adding a configuration and trying to run it a hyphen ("-") is added to the executable. Therefore I get an error that the file cannot be found.

image

Steps To Reproduce

  1. in ubuntu linux clone a C# project like nuget-inspector
  2. install the C# dev kit extension in vs code
  3. create a launch.json
  4. add a new configuration ".NET: launch executable file (Console)"
  5. launch it

Expected Behavior

file is launched

instead a hyphen is added and changes the path from

/bin/Debug/net6.0/linux-x64/nuget-inspector.dll to /bin/Debug/net6.0/linux-x64/-nuget-inspector.dll

Environment Information

  • OS: Ubuntu 22.04
  • VS Code version: 1.92.2 azure snap
  • Extension version: v1.9.55

WardenGnaw avatar Sep 03 '24 17:09 WardenGnaw