build_docs.bat 563 B

12345678910111213141516
  1. @echo off
  2. setlocal
  3. set msbuild=C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe
  4. if exist System.Net.FtpClient\bin rd /q /s System.Net.FtpClient\bin
  5. %msbuild% /p:Configuration=Release System.Net.FtpClient\System.Net.FtpClient.csproj
  6. cd Sandcastle
  7. if exist CHM rd /q /s CHM
  8. if exist HTML rd /q /s HTML
  9. %msbuild% /p:Configuration=Release "API_Reference_CHM.shfbproj"
  10. %msbuild% /p:Configuration=Release "API_Reference_HTML.shfbproj"
  11. if exist CHM/LastBuild.log del /q /s CHM/LastBuild.log
  12. if exist HTML/LastBuild.log del /q /s HTML/LastBuild.log
  13. cd ..
  14. pause