Skip to content

Commit

Permalink
Added batch/command scripts for building and cleaning solution.
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Jun 24, 2008
1 parent bb00a7a commit 34a570d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
pushd "%~dp0"
for %%i in (Debug Release) do msbuild /p:Configuration=%%i src\NCrontab.sln
popd
4 changes: 4 additions & 0 deletions clean.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@echo off
pushd "%~dp0"
for %%i in (Debug Release) do msbuild /target:Clean /p:Configuration=%%i src\NCrontab.sln
popd

0 comments on commit 34a570d

Please sign in to comment.