Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
Use latest ProjectK, and k pack all samples
Browse files Browse the repository at this point in the history
  • Loading branch information
loudej committed Apr 4, 2014
1 parent cea2bc2 commit 62a4ab4
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions deploy.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,16 @@ IF NOT EXIST .nuget\nuget.exe (
)

ECHO Downloading ProjectK
.nuget\nuget.exe install ProjectK -Version 0.1-alpha-291 -OutputDirectory packages -NoCache
SET K_CMD=%~dp0packages\ProjectK.0.1-alpha-291\tools\k.cmd
.nuget\nuget.exe install ProjectK -Prerelease -OutputDirectory packages -NoCache
FOR /D %%G IN (packages\ProjectK.*) DO (
SET K_CMD=%~dp0%%G\tools\k.cmd
)

CD "%DEPLOYMENT_SOURCE%\samples\Builder.Filtering.Web"
CALL "%K_CMD%" restore
CALL "%K_CMD%" pack --out "%DEPLOYMENT_TARGET%"
FOR /D %%G IN (samples\*.Web) DO (
CD "%DEPLOYMENT_SOURCE%\%%G"
CALL "%K_CMD%" restore
CALL "%K_CMD%" pack --out "%DEPLOYMENT_TARGET%"
)

POPD

0 comments on commit 62a4ab4

Please sign in to comment.