mirror of
https://github.com/dnSpy/dnSpy.git
synced 2025-01-07 03:16:51 +08:00
16 lines
673 B
Batchfile
16 lines
673 B
Batchfile
@echo off
|
|
|
|
pushd Extensions\ILSpy.Decompiler\NRefactory && git clean -xdf && popd || goto :error
|
|
pushd Libraries\ICSharpCode.TreeView && git clean -xdf && popd || goto :error
|
|
pushd Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler && git clean -xdf && popd || goto :error
|
|
pushd dnSpy\dnSpy.Images && git clean -xdf && popd || goto :error
|
|
pushd Extensions\dnSpy.Debugger\netcorefiles && git clean -xdf && popd || goto :error
|
|
pushd dnSpy\Roslyn\Roslyn.ExpressionCompiler && git clean -xdf && popd || goto :error
|
|
pushd Extensions\dnSpy.Debugger\Mono.Debugger.Soft && git clean -xdf && popd || goto :error
|
|
git clean -xdf || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
exit /b %errorlevel%
|