There is an metadata array in docfx.json. The metadata example has an src object with files and exclude properties.
To point to another project in your solution, add the cwd property to metadata and change the folders (ie "../Another.Project").
{ "metadata": [ { "src": [ { "files": [ "**/*.csproj" ], "exclude": [ "**/bin/**", "**/obj/**", "_site/**" ], "cwd": "../Another.Project" } ], "dest": "obj/api" } ], "build": ... }
dalenewman
source share