I have structure of solution like this:
Solution
--Project.DAL
------bin
------obj
------Project.DAL.csproj
--Project.BLL
------bin
------obj
------Project.BLL.csproj
--Project.View
------bin
------obj
------Project.View.csproj
--Project.Documentaion
------_site
------another-files-of-docfx
I tryed change props and values of docfx.json
{
"src": [
{
"files": [
"Project.DAL.csproj",
"Project.BLL.csproj",
"Project.View.csproj"
],
"src": "Project"
}
],
"dest": "api",
"disableGitFeatures": false,
"disableDefaultFilter": false
}
Every project has nugetpackage docfx.console. I have documentation in every project after building solution. I want to collect all xml-documentation of projects in solution to folder Project.Documentation. Please tell me, its possible or not? If yes, can you help me and tell me what i did wrong and where, please?