File: pushdoc.cmd

package info (click to toggle)
gdata-sharp 2.2.0.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 12,092 kB
  • sloc: cs: 67,781; xml: 38,234; python: 163; makefile: 149; sh: 27
file content (23 lines) | stat: -rw-r--r-- 611 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#@echo off
set out_dir=..\lib
set doc_dir=..\docs
set target_dir=..\..\..\..\docs
set temp_dir=c:\gdata.doc
time /t
rem build documentation
msbuild.exe gdatadocumentation.shfbproj
move "%temp_dir%\Google.GData.Documentation.chm" "%doc_dir%\"
move "%temp_dir%\*.log" .

echo "%temp_dir%\*.*"
echo "%target_dir%\*.*"

mkdir "%target_dir%\html"

copy /y "%temp_dir%\*.*" "%target_dir%\*.*"
copy /y "%temp_dir%\html\*.*" "%target_dir%\html\"
copy /y "%target_dir%\Index.html" "%target_dir%\orgindex.html"
copy /y "%temp_dir%\AdditionalContent\*.*" "%target_dir%\AdditionalContent\"
time /t