publishD.cmd 233 B

12345678910111213141516
  1. @echo off
  2. call bootstrap.cmd
  3. rem ** cleanup **
  4. rmdir /s /q bin\debug
  5. rem ** build **
  6. dotnet pack -c Debug
  7. for %%i in (bin\debug\*.nupkg) do nuget add %%i -source %nugetrepo%
  8. goto done
  9. :done
  10. echo *** DONE ***
  11. :exit