I have a few repositories in Mercurial with the following structure:
- Core
- Integration
- Admin
- MyApp
From the MyApp
repo, I want to include Core
and Integration
.
I add those as a sub-repo to MyApp
, and place it inside an Externals
folder.
Folder structure for MyApp
looks roughly as this:
MyApp
- BusinessLogic
- DataAccess
- Externals
-- Core
-- Integration
- Web
- packages
The problem has got to do with the packages
folder. I use package restore in all solutions, and NuGet downloads all packages fine. The folder contains the packages that my external projects rely on.
Only problem is, that the relative path from Core
and Integration
to the packages folder is now wrong.
Is there any way I can solve this?