dotnet-installer/scripts/dotnet-resolve-references.cmd

11 lines
208 B
Batchfile

@Echo OFF
SETLOCAL
SET ERRORLEVEL=
REM makes testing easier for now
set PATH=%PATH%;%~dp0
dnx %DOTNET_OPTIONS% -p %~dp0..\src\Microsoft.DotNet.Tools.DependencyResolver run %*
exit /b %ERRORLEVEL%
ENDLOCAL