1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 20:53:25 +00:00

clean with msbuild

This commit is contained in:
Kyle Spearrin
2018-01-10 15:55:07 -05:00
parent 796c2ed58c
commit b7ed0a29fe
2 changed files with 1 additions and 22 deletions

View File

@@ -34,25 +34,3 @@ $hockeyNode.ParentNode.RemoveChild($hockeyNode);
$xml.Save($appPath);
# Clean project directories
$androidBinDir = $($rootPath + "\src\Android\bin");
$androidObjDir = $($rootPath + "\src\Android\obj");
$appBinDir = $($rootPath + "\src\App\bin");
$appObjDir = $($rootPath + "\src\App\obj");
if((Test-Path -Path $androidBinDir)) {
Remove-Item -Recurse -Force $androidBinDir;
}
if((Test-Path -Path $androidObjDir)) {
Remove-Item -Recurse -Force $androidObjDir;
}
if((Test-Path -Path $appBinDir)) {
Remove-Item -Recurse -Force $appBinDir;
}
if((Test-Path -Path $appObjDir)) {
Remove-Item -Recurse -Force $appObjDir;
}