Skip to content

Instantly share code, notes, and snippets.

@sgong-pdftron
Created June 11, 2019 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgong-pdftron/e9c0042711a41d536990c992ee78097f to your computer and use it in GitHub Desktop.
Save sgong-pdftron/e9c0042711a41d536990c992ee78097f to your computer and use it in GitHub Desktop.
@echo off
for /D %%s in (*) do (
if exist %%s\CS (
cd %%s\CS
echo %%s starting...
call dotnet run
cd ..\..
echo %%s finished.
pause
)
)
echo Run all tests finished.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment