Skip to content

Commit 40daf70

Browse files
Update docfx.json csproj paths to Nimblesite.* layout
The website's API doc generation referenced stale project paths (DataProvider/DataProvider.csproj, Sync/Sync.csproj, etc.) that no longer exist after the Nimblesite.* rename. This produced an empty docfx api/ directory and failed deploy-website. Drop Gatekeeper too, which has no csproj anymore.
1 parent 51b7480 commit 40daf70

1 file changed

Lines changed: 16 additions & 7 deletions

File tree

Website/docfx/docfx.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,29 @@
33
{
44
"src": [
55
{
6-
"files": ["DataProvider/DataProvider.csproj", "DataProvider.SQLite/DataProvider.SQLite.csproj", "DataProvider.SqlServer/DataProvider.SqlServer.csproj"],
6+
"files": [
7+
"Nimblesite.DataProvider.Core/Nimblesite.DataProvider.Core.csproj",
8+
"Nimblesite.DataProvider.SQLite/Nimblesite.DataProvider.SQLite.csproj",
9+
"Nimblesite.DataProvider.SqlServer/Nimblesite.DataProvider.SqlServer.csproj"
10+
],
711
"src": "../../DataProvider"
812
},
913
{
10-
"files": ["Sync/Sync.csproj", "Sync.SQLite/Sync.SQLite.csproj", "Sync.Postgres/Sync.Postgres.csproj", "Sync.Http/Sync.Http.csproj"],
14+
"files": [
15+
"Nimblesite.Sync.Core/Nimblesite.Sync.Core.csproj",
16+
"Nimblesite.Sync.SQLite/Nimblesite.Sync.SQLite.csproj",
17+
"Nimblesite.Sync.Postgres/Nimblesite.Sync.Postgres.csproj",
18+
"Nimblesite.Sync.Http/Nimblesite.Sync.Http.csproj"
19+
],
1120
"src": "../../Sync"
1221
},
1322
{
14-
"files": ["Migration/Migration.csproj", "Migration.SQLite/Migration.SQLite.csproj", "Migration.Postgres/Migration.Postgres.csproj"],
23+
"files": [
24+
"Nimblesite.DataProvider.Migration.Core/Nimblesite.DataProvider.Migration.Core.csproj",
25+
"Nimblesite.DataProvider.Migration.SQLite/Nimblesite.DataProvider.Migration.SQLite.csproj",
26+
"Nimblesite.DataProvider.Migration.Postgres/Nimblesite.DataProvider.Migration.Postgres.csproj"
27+
],
1528
"src": "../../Migration"
16-
},
17-
{
18-
"files": ["Gatekeeper.Api/Gatekeeper.Api.csproj"],
19-
"src": "../../Gatekeeper"
2029
}
2130
],
2231
"dest": "api",

0 commit comments

Comments
 (0)