build batch files
This commit is contained in:
parent
7e28eeed30
commit
4854704b2c
20
build_clean.bat
Normal file
20
build_clean.bat
Normal 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
1
build_debug.bat
Normal file
@ -0,0 +1 @@
|
||||
%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Debug SimpleLog.sln
|
1
build_release.bat
Normal file
1
build_release.bat
Normal file
@ -0,0 +1 @@
|
||||
%WINDIR%\Microsoft.NET\Framework\v3.5\MSBuild.exe /property:Configuration=Release SimpleLog/SimpleLog.csproj
|
Loading…
Reference in New Issue
Block a user