Hard clean

This commit is contained in:
Westin Miller
2017-10-26 10:51:56 -07:00
parent c69537b173
commit 7b9f2d680a

2
Jenkinsfile vendored
View File

@@ -39,6 +39,8 @@ node {
} else { } else {
buildMode = "Debug" buildMode = "Debug"
} }
bat "rmdir /Q /S bin/"
bat "rmdir /Q /S bin-test/"
bat "\"${tool 'MSBuild'}msbuild\" Torch.sln /p:Configuration=${buildMode} /p:Platform=x64 /t:Clean" bat "\"${tool 'MSBuild'}msbuild\" Torch.sln /p:Configuration=${buildMode} /p:Platform=x64 /t:Clean"
bat "\"${tool 'MSBuild'}msbuild\" Torch.sln /p:Configuration=${buildMode} /p:Platform=x64" bat "\"${tool 'MSBuild'}msbuild\" Torch.sln /p:Configuration=${buildMode} /p:Platform=x64"
} }