Добавлена документация

This commit is contained in:
FrigaT
2025-12-24 05:55:26 +03:00
parent 41986987b1
commit 833d8c80d9
14 changed files with 405 additions and 89 deletions

22
scripts/generate-docs.ps1 Normal file
View File

@@ -0,0 +1,22 @@
Param(
[string]$DocfxPath = "docfx",
[string]$WorkingDir = "$(Resolve-Path .)"
)
$ErrorActionPreference = 'Stop'
Write-Host "Generating docfx documentation..."
if (-not (Get-Command $DocfxPath -ErrorAction SilentlyContinue)) {
Write-Host "Docfx not found on PATH. Install docfx or provide full path to docfx.exe" -ForegroundColor Yellow
}
Push-Location $WorkingDir
try {
& $DocfxPath metadata docfx.json
& $DocfxPath build docfx.json
Write-Host "Docfx build complete. Output in _site folder" -ForegroundColor Green
}
finally {
Pop-Location
}