Home > OS >  How to make VScode Go work in a Multi-Module Repo
How to make VScode Go work in a Multi-Module Repo

Time:11-08

I have a go.mod file in a golang project, and I also have another go project which is embedded in this project, but vscode does not seem to recognize this embedded project. Is there a way to work with multiple golang project with vscode?

CodePudding user response:

You have to add the modules directory to your workspace using the "file / add folder to work space" menu.

  • Related