fernandoescolar / vscode-solution-explorer

This is a Visual Studio Code extension that provides a (.sln) Visual Studio Solution explorer panel..
MIT License
348 stars 73 forks source link

Fix Project dependent files display #261

Closed lhzcm closed 1 year ago

lhzcm commented 1 year ago

Fixed an issue where dependent files were only displayed in the project root In my project, I used the T4 template to generate code, but when I used it, I found that the project subfolder could not display the dependent files normally, and I found that the getDependants method used the project root directory path, so I changed the directory root directory path to the file folder path, and the problem was perfectly solved

fernandoescolar commented 1 year ago

Thanks!