From 34a570dd0f158fe0c33a8cbb393a5763c0eed824 Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Tue, 24 Jun 2008 16:05:07 +0000 Subject: [PATCH] Added batch/command scripts for building and cleaning solution. --- build.cmd | 4 ++++ clean.cmd | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 build.cmd create mode 100644 clean.cmd diff --git a/build.cmd b/build.cmd new file mode 100644 index 0000000..a9fdd5d --- /dev/null +++ b/build.cmd @@ -0,0 +1,4 @@ +@echo off +pushd "%~dp0" +for %%i in (Debug Release) do msbuild /p:Configuration=%%i src\NCrontab.sln +popd diff --git a/clean.cmd b/clean.cmd new file mode 100644 index 0000000..3f4046b --- /dev/null +++ b/clean.cmd @@ -0,0 +1,4 @@ +@echo off +pushd "%~dp0" +for %%i in (Debug Release) do msbuild /target:Clean /p:Configuration=%%i src\NCrontab.sln +popd