2020-02-25 06:49:28 +08:00
|
|
|
cd /D "%~dp0"
|
|
|
|
|
2020-02-27 03:05:15 +08:00
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=amd64 -host_arch=amd64 -winsdk=10.0.18362.0
|
2020-03-05 22:52:21 +08:00
|
|
|
|
|
|
|
powershell -file update_appxmanifest_version.ps1 || exit /b 1
|
|
|
|
|
2020-02-25 06:49:28 +08:00
|
|
|
call makeappx build /v /overwrite /f PackagingLayout.xml /id "PowerToys-x64" /op bin\ || exit /b 1
|
2020-03-05 22:52:21 +08:00
|
|
|
|
|
|
|
setlocal EnableDelayedExpansion
|
|
|
|
for /f "tokens=3delims=<>" %%i in ('findstr "<Version>" "..\Version.props"') do (
|
|
|
|
set MSIXVERSION=%%i
|
|
|
|
)
|
|
|
|
setlocal DisableDelayedExpansion
|
|
|
|
ren "bin\PowerToys-x64.msix" PowerToysSetup-%MSIXVERSION%-x64.msix
|