microsoft / vscode-java-dependency

Manage Java projects in Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency
MIT License
152 stars 74 forks source link

Ability to change the project name #777

Open Azmisov opened 1 year ago

Azmisov commented 1 year ago

I have a project with an "unmanaged folder", and it gets an autogenerated name when first opened. Something like: "myproject_380e1993". Is there a way to configure this name explicitly? When I clone/copy the codebase and open from another computer, it generates another random project name, and so the launch.json configurations all need to be changed to fit the new name.

jdneo commented 1 year ago

380e1993 this is a hash generated based on the project location on the disk. So different locations result to different suffix.

Technically, I think it can be updated by user. So far the language server does not expose this capability yet.