You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
for /f %%l in ('git clean -xdn') do set /a count += 1
for /f %%l in ('git status --porcelain') do set /a count += 1
if %count% neq 0 (
choice.exe /T 10 /D N /C YN /M "WARNING: The repo contains uncommitted changes and you are building for publication. Press Y to continue or N to stop. "
if !errorlevel! neq 1 exit /b 1
)
set LV_GIT_HEAD_SHA=
for /f %%c in ('git rev-parse HEAD') do set "LV_GIT_HEAD_SHA=%%c"
set LocalDotNet_ToolsDir=%~dp0tools
if exist "%LocalDotNet_ToolsDir%" rmdir /s /q "%LocalDotNet_ToolsDir%"
if exist "%LocalDotNet_ToolsDir%" (
echo ERROR: Failed to remove "%LocalDotNet_ToolsDir%" folder.
exit /b 1
)
set LocalDotNet_PackagesDir=%~dp0packages
if exist "%LocalDotNet_PackagesDir%" rmdir /s /q "%LocalDotNet_PackagesDir%"
if exist "%LocalDotNet_PackagesDir%" (
echo ERROR: Failed to remove "%LocalDotNet_PackagesDir%" folder.
exit /b 1
)
echo/==================
echo/ Building version %VersionSuffix% NuGet packages.