mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 00:43:00 -05:00
18 lines
315 B
Batchfile
18 lines
315 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
setlocal EnableDelayedExpansion
|
|
|
|
if "%1"=="" (
|
|
cd %~dp0..\..
|
|
) else (
|
|
cd "%1"
|
|
)
|
|
|
|
|
|
if exist winfsp.sln (
|
|
powershell -NoProfile -ExecutionPolicy Bypass -Command "& '%~dp0remove-sln-project.ps1' -Path '%cd%\winfsp.sln' -Match '*dotnet*'
|
|
) else (
|
|
echo winfsp.sln not found in %cd%
|
|
)
|