build batch files

This commit is contained in:
tmont 2009-04-18 04:46:34 +00:00
parent 7e28eeed30
commit 4854704b2c
3 changed files with 22 additions and 0 deletions

20
build_clean.bat Normal file
View File

@ -0,0 +1,20 @@
@echo off
if exist "SimpleLog/bin" (
echo deleting SimpleLog/bin...
rmdir /S /Q "SimpleLog/bin"
)
if exist "SimpleLog/obj" (
echo deleting SimpleLog/obj...
rmdir /S /Q "SimpleLog/obj"
)
if exist "SimpleLog.Tests/bin" (
echo deleting SimpleLog.Tests/bin...
rmdir /S /Q "SimpleLog.Tests/bin"
)
if exist "SimpleLog.Tests/obj" (
echo deleting SimpleLog.Tests/obj...
rmdir /S /Q "SimpleLog.Tests/obj"
)

1
build_debug.bat Normal file
View File

@ -0,0 +1 @@
%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Debug SimpleLog.sln

1
build_release.bat Normal file
View File

@ -0,0 +1 @@
%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Release SimpleLog/SimpleLog.csproj