Hard clean v2

This commit is contained in:
Westin Miller
2017-10-26 10:54:19 -07:00
parent 7b9f2d680a
commit 48f0f81f12

4
Jenkinsfile vendored
View File

@@ -39,8 +39,8 @@ node {
} else { } else {
buildMode = "Debug" buildMode = "Debug"
} }
bat "rmdir /Q /S bin/" bat "rmdir /Q /S \"bin\""
bat "rmdir /Q /S bin-test/" 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"
} }