Move project in sub

This commit is contained in:
Andrew nuark G 2020-12-18 17:40:22 +07:00
parent f868166756
commit ec1af1b8e5
43 changed files with 358 additions and 2 deletions

View file

@ -1,16 +0,0 @@
$pumlFile = "output.puml"
if (Test-Path $pumlFile) {
Write-Host Found old file. Resolution: delete
Remove-Item $pumlFile
}
$cmd = "hpp2plantuml -i *.h"
# hpp2plantuml -i *.h -i entities\*.h -o output.puml
foreach ($dir in $(Get-ChildItem -Path $Source -Directory -Recurse)) {
$cmd += " -i '$($dir.FullName)\*.h'"
}
$cmd += " -o $pumlFile"
Invoke-Expression $cmd
Exit(0)