1 Star 0 Fork 0

kartzan/netch1111

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clean.ps1 725 Bytes
一键复制 编辑 原始数据 按行查看 历史
Connection Refused 提交于 2021-10-14 18:42 . [Scripts] Update clean.ps1
Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
function Delete {
param (
[string]
$Path
)
if (Test-Path $Path) {
rm -Recurse -Force $Path | Out-Null
}
}
Delete '.vs'
Delete 'release'
Delete 'Netch\bin'
Delete 'Netch\obj'
Delete 'Tests\bin'
Delete 'Tests\obj'
Delete 'TestResults'
Delete 'Redirector\bin'
Delete 'Redirector\obj'
Delete 'RedirectorTester\bin'
Delete 'RedirectorTester\obj'
Delete 'RouteHelper\bin'
Delete 'RouteHelper\obj'
Delete 'Netch\*.csproj.user'
Delete 'Redirector\*.vcxproj.user'
Delete 'RedirectorTester\*.csproj.user'
Delete 'RouteHelper\*.vcxproj.user'
.\other\clean.ps1
Pop-Location
exit $lastExitCode
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kartzan/netch1111.git
git@gitee.com:kartzan/netch1111.git
kartzan
netch1111
netch1111
main

搜索帮助