diff --git a/build_clean.bat b/build_clean.bat new file mode 100644 index 0000000..3912b9a --- /dev/null +++ b/build_clean.bat @@ -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" +) \ No newline at end of file diff --git a/build_debug.bat b/build_debug.bat new file mode 100644 index 0000000..f08a596 --- /dev/null +++ b/build_debug.bat @@ -0,0 +1 @@ +%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Debug SimpleLog.sln diff --git a/build_release.bat b/build_release.bat new file mode 100644 index 0000000..f861479 --- /dev/null +++ b/build_release.bat @@ -0,0 +1 @@ +%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Release SimpleLog/SimpleLog.csproj