Multiple Functions projects in multi-root workspace
See original GitHub issueHello!
I got that the extension now uses VSCode new workspace feature rather than plain old .sln files.
The problem is, VSCode settings are now embedded on a per project basis on its own .vscode
directory making things harder to maintain.
I’m trying to have the following workspace to work:
The idea is to have multiple Functions apps under the same workspace using a single .code-workspace
file and start/build everything when I press F5 (yeah, I’ve changed the Host port on each one and also added the compounds
section as the picture show).
The problem is that if I do that, build fail miserably since it tried to build the same project multiple times and the files are in use. I guess MSBuild is not seeing each one of those projects as different ones.
I’m trying to make the same behaviour for both the developers who have VS2017 on Windows using the .sln
as the ones on Mac OSX using VSCode and its workspace files.
Can someone shed a light on how can I achieve that?
Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (4 by maintainers)
Interesting… I looked into this and couldn’t get it working with the existing extension. We’ll have to make changes on our side
Nvm. After some changes on the files similar to what you did on the C# ones I was able to make it work.
I think it should be documented somewhere that we require those changes.
Thanks!