7 lines
164 B
Batchfile
7 lines
164 B
Batchfile
|
|
@echo off
|
||
|
|
setlocal
|
||
|
|
|
||
|
|
set SCRIPT_DIR=%~dp0
|
||
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%find-missing-csharp-docs.ps1" %*
|
||
|
|
exit /b %ERRORLEVEL%
|