forked from ccnet/CruiseControl.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateDocs.bat
More file actions
16 lines (12 loc) · 762 Bytes
/
createDocs.bat
File metadata and controls
16 lines (12 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
echo Compiling
Tools\NAnt\NAnt.exe clean build -buildfile:ccnet.build -D:codemetrics.output.type=HtmlFile -nologo -logfile:nant-build.log.txt %*
set outputfolder=docgen
rmdir %outputfolder% /s /q
mkdir %outputfolder%
Tools\docGenerator\Console\bin\Debug\Console.exe -c=generate -s=Build\Server\ThoughtWorks.CruiseControl.Remote.dll -o=%outputfolder%
Tools\docGenerator\Console\bin\Debug\Console.exe -c=generate -s=Build\Server\ThoughtWorks.CruiseControl.Core.dll -o=%outputfolder%
Tools\docGenerator\Console\bin\Debug\Console.exe -c=generate -s=Build\WebDashboard\ThoughtWorks.CruiseControl.WebDashboard.dll -o=%outputfolder%
IF "%2"=="" GOTO Continue
Tools\docGenerator\Console\bin\Debug\Console.exe -c=publish -u=%1 -p=%2 -o=%outputfolder%
:Continue
pause