Skip to content

Commit

Permalink
add convenience cmd script to create nuget packages from existing bui…
Browse files Browse the repository at this point in the history
…ld output
  • Loading branch information
sbohlen committed Nov 27, 2012
1 parent 93c674f commit 844cd20
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions package-nuget-only.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@echo off
@echo .
@echo ..
@echo ...
@echo Running full Build Script, capturing output to buildlog.txt file...
@echo Start Time: %time%
build-support\tools\nant\bin\nant package-nuget -f:spring.build -D:package.version=2.0.0 > buildlog.txt
@echo .
@echo ..
@echo ...
@echo Launching text file viewer to display buildlog.txt contents...
start "ignored but required placeholder window title argument" buildlog.txt
@echo .
@echo ..
@echo ...
@echo ************************
@echo Build Complete!
@echo ************************
@echo End Time: %time%
@echo   



0 comments on commit 844cd20

Please sign in to comment.