mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 08:11:25 +00:00
2a7bf7fb5b
* Added localization code to pipeline and created one LocProject json for Settings * Fixed typo * Reordered nuget source * Moved nuget install to restore step * Added FZ.rc file to LocProj * Added FZ resx file and modified rc file * Fixed file names * Changed to check folder for LocProject files * Updated folder * Changed directory * Changed to src directory * Changed language set and name format, removed rc file localization * Added all projects with resx/resw files * Added newline to end of file * Removed nuget source as it is not used * Updated comments * Fixed formatting of json file * Move loc step to end
33 lines
1.0 KiB
Batchfile
33 lines
1.0 KiB
Batchfile
@echo off
|
|
|
|
cd /D "%~dp0"
|
|
|
|
echo Installing nuget packages
|
|
|
|
setlocal
|
|
|
|
rem In this sample, the repo root is identical to the script directory path. Adjust the value of the RepoRoot variable accordingly based on your environment.
|
|
rem Again, ensure the RepoRoot variable is set to the real repo root location, otherwise the localization toolset wouldn't work as intended.
|
|
rem Note that the resolved %~dp0 ends with \.
|
|
set RepoRoot=%~dp0..\
|
|
set OutDir=%RepoRoot%out
|
|
set NUGET_PACKAGES=%RepoRoot%packages
|
|
set LocalizationXLocPkgVer=2.0.0
|
|
|
|
nuget install Localization.XLoc -Version %LocalizationXLocPkgVer% -OutputDirectory "%NUGET_PACKAGES%" -NonInteractive -Verbosity detailed
|
|
if "%errorlevel%" neq "0" (
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
nuget install LSBuild.XLoc -OutputDirectory "%NUGET_PACKAGES%" -NonInteractive -Verbosity detailed
|
|
if "%errorlevel%" neq "0" (
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
nuget install Localization.Languages -OutputDirectory "%NUGET_PACKAGES%" -NonInteractive -Verbosity detailed
|
|
if "%errorlevel%" neq "0" (
|
|
exit /b %errorlevel%
|
|
)
|
|
|
|
exit /b %errorlevel%
|