microsoft / vscode-tye

A Visual Studio Code extension for Tye development
Other
25 stars 9 forks source link

Tye should use case insensitive string matching between the application name in tye.yaml and launch.json #167

Closed ooeygui closed 2 years ago

ooeygui commented 2 years ago

If case is the only difference between launch.json and tye.yaml, the tye extension may not find the launched application.

For example: tye.yaml

name: foo

launch.json

{
    "applicationName": "FOO",
    "name": "Debug with Tye",
    "preLaunchTask": "tye-run",
    "request": "launch",
    "type": "tye",
    "watch": true
}

The tye extension will timeout waiting for FOO, when the application foo started.