/ src / modules / cmdpal / clean-sdk.ps1
clean-sdk.ps1
1  
2  $gitRoot = git rev-parse --show-toplevel
3  $api = Join-Path $gitRoot "x64\Debug\Microsoft.CommandPalette.Extensions"
4  $helpers = Join-Path $gitRoot "x64\Debug\Microsoft.CommandPalette.Extensions.Toolkit"
5  
6  Remove-Item -Path $api -Recurse -Force | Out-Null
7  Remove-Item -Path $helpers -Recurse -Force | Out-Null