Fix: Gitignore JSON

This commit is contained in:
2025-07-24 11:02:28 -03:00
parent 67a2f3f449
commit 5ebf4a4320
3 changed files with 41 additions and 2 deletions

2
.gitignore vendored
View File

@@ -180,8 +180,6 @@ DocProject/Help/Html2
DocProject/Help/html
# DocFx
[Dd]ocs/
docfx.build.json
docfx.metadata.json
# Click-Once directory
publish/

22
docfx.build.json Normal file
View File

@@ -0,0 +1,22 @@
{
"build": {
"content": [
{
"files": [
"docs/api/**.yml",
"docs/toc.yml",
"docs/index.md"
]
}
],
"resource": [],
"output": "docs/_site",
"template": [
"default",
"modern"
],
"globalMetadata": {
"_appTitle": "Documentación Proyecto Mercados"
}
}
}

19
docfx.metadata.json Normal file
View File

@@ -0,0 +1,19 @@
{
"metadata": [
{
"src": [
{
"files": [
"src/Mercados.Api/Mercados.Api.csproj",
"src/Mercados.Core/Mercados.Core.csproj",
"src/Mercados.Database/Mercados.Database.csproj",
"src/Mercados.Infrastructure/Mercados.Infrastructure.csproj",
"src/Mercados.Worker/Mercados.Worker.csproj"
],
"src": "."
}
],
"dest": "docs/api"
}
]
}