2019-09-05 00:26:26 +08:00
|
|
|
environment:
|
|
|
|
host:
|
|
|
|
os: 'windows'
|
|
|
|
flavor: 'server'
|
2020-02-25 06:49:28 +08:00
|
|
|
version: '2019'
|
2019-09-05 00:26:26 +08:00
|
|
|
runtime:
|
|
|
|
provider: 'appcontainer'
|
2020-05-13 04:12:36 +08:00
|
|
|
image: 'cdpxwin1809.azurecr.io/global/vse2019:latest'
|
2019-10-10 03:21:21 +08:00
|
|
|
source_mode: 'map'
|
|
|
|
|
|
|
|
version:
|
|
|
|
name: 'PowerToys'
|
|
|
|
major: 1
|
|
|
|
minor: 0
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
signing_options:
|
2019-10-10 03:21:21 +08:00
|
|
|
profile: 'external_distribution'
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
package_sources:
|
|
|
|
nuget:
|
|
|
|
feeds:
|
2019-10-10 03:21:21 +08:00
|
|
|
'Nuget': 'https://api.nuget.org/v3/index.json'
|
2020-08-20 07:10:15 +08:00
|
|
|
'Toolset': 'https://msazure.pkgs.visualstudio.com/_packaging/Toolset/nuget/v3/index.json'
|
2019-10-10 03:21:21 +08:00
|
|
|
'PipelineBuildSupplement': 'https://msazure.pkgs.visualstudio.com/_packaging/PipelineBuildSupplement/nuget/v3/index.json'
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
restore:
|
|
|
|
commands:
|
|
|
|
- !!defaultcommand
|
2019-10-10 03:21:21 +08:00
|
|
|
name: 'Restore Power Toys Telemetry'
|
|
|
|
command: '.pipelines\restore-telemetry.cmd'
|
|
|
|
- !!defaultcommand
|
|
|
|
name: 'Restore Power Toys'
|
2019-09-05 00:26:26 +08:00
|
|
|
command: '.pipelines\restore.cmd'
|
2019-10-10 03:21:21 +08:00
|
|
|
- !!defaultcommand
|
|
|
|
name: 'Restore Installer'
|
|
|
|
command: '.pipelines\restore-installer.cmd'
|
2020-08-20 07:10:15 +08:00
|
|
|
- !!defaultcommand
|
|
|
|
name: 'Restore Localization packages'
|
|
|
|
command: '.pipelines\restore-localization.cmd'
|
2020-12-23 17:28:34 +08:00
|
|
|
- !!defaultcommand
|
|
|
|
name: 'Restore Tools packages'
|
|
|
|
command: '.pipelines\restore-tools.cmd'
|
|
|
|
|
2019-10-10 03:21:21 +08:00
|
|
|
|
|
|
|
|
2019-09-05 00:26:26 +08:00
|
|
|
build:
|
|
|
|
commands:
|
2020-10-26 23:56:34 +08:00
|
|
|
# Localize the files before the Build PowerToys step to generate translated resx files from the lcl files
|
2020-10-13 23:20:33 +08:00
|
|
|
- !!buildcommand
|
|
|
|
name: 'Localize Power Toys'
|
|
|
|
command: '.pipelines\build-localization.cmd'
|
|
|
|
artifacts:
|
|
|
|
- from: 'out\loc'
|
|
|
|
to: 'loc'
|
|
|
|
include:
|
|
|
|
- '**/*'
|
2019-09-05 00:26:26 +08:00
|
|
|
- !!buildcommand
|
2019-10-10 03:21:21 +08:00
|
|
|
name: 'Build Power Toys'
|
2019-09-05 00:26:26 +08:00
|
|
|
command: '.pipelines\build.cmd'
|
|
|
|
artifacts:
|
2020-06-02 07:10:34 +08:00
|
|
|
- to: 'Symbols'
|
2020-06-02 01:26:10 +08:00
|
|
|
include:
|
2020-06-02 06:21:38 +08:00
|
|
|
- 'x64/**/*.pdb'
|
2020-06-02 07:10:34 +08:00
|
|
|
exclude:
|
|
|
|
- 'x64/Release/obj/**/*.pdb'
|
2019-10-10 03:21:21 +08:00
|
|
|
- from: 'x64/Release'
|
2019-09-05 00:26:26 +08:00
|
|
|
to: 'Build_Output'
|
|
|
|
include:
|
2020-04-21 15:30:12 +08:00
|
|
|
- 'action_runner.exe'
|
2020-12-22 22:15:46 +08:00
|
|
|
- 'BugReportTool\BugReportTool.exe'
|
2020-07-29 00:16:09 +08:00
|
|
|
- 'modules\ColorPicker\ColorPicker.dll'
|
2020-12-10 15:21:46 +08:00
|
|
|
- 'modules\ColorPicker\ColorPickerUI.dll'
|
|
|
|
- 'modules\ColorPicker\ColorPickerUI.exe'
|
2020-11-21 12:15:53 +08:00
|
|
|
- 'modules\ColorPicker\ManagedCommon.dll'
|
|
|
|
- 'modules\ColorPicker\Microsoft.PowerToys.Settings.UI.Lib.dll'
|
|
|
|
- 'modules\ColorPicker\PowerToysInterop.dll'
|
|
|
|
- 'modules\ColorPicker\Telemetry.dll'
|
2020-10-13 23:20:33 +08:00
|
|
|
- '**\*.resources.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\FancyZones\fancyzones.dll'
|
|
|
|
- 'modules\FancyZones\FancyZonesEditor.exe'
|
2020-11-24 22:55:31 +08:00
|
|
|
- 'modules\FancyZones\FancyZonesEditor.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\FancyZones\ManagedCommon.dll'
|
|
|
|
- 'modules\FancyZones\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\FileExplorerPreview\MarkdownPreviewHandler.dll'
|
2020-12-11 16:59:42 +08:00
|
|
|
- 'modules\FileExplorerPreview\MarkdownPreviewHandler.comhost.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\FileExplorerPreview\powerpreview.dll'
|
|
|
|
- 'modules\FileExplorerPreview\PreviewHandlerCommon.dll'
|
|
|
|
- 'modules\FileExplorerPreview\SvgPreviewHandler.dll'
|
2020-12-11 16:59:42 +08:00
|
|
|
- 'modules\FileExplorerPreview\SvgPreviewHandler.comhost.dll'
|
2021-01-04 22:27:01 +08:00
|
|
|
- 'modules\FileExplorerPreview\SvgThumbnailProvider.dll'
|
|
|
|
- 'modules\FileExplorerPreview\SvgThumbnailProvider.comhost.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\FileExplorerPreview\Telemetry.dll'
|
2020-06-01 23:07:06 +08:00
|
|
|
- 'modules\ImageResizer\ImageResizer.exe'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\ImageResizer\ImageResizer.dll'
|
2020-06-01 23:07:06 +08:00
|
|
|
- 'modules\ImageResizer\ImageResizerExt.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\ImageResizer\PowerToysInterop.dll'
|
2020-06-02 00:29:40 +08:00
|
|
|
- 'modules\KeyboardManager\KeyboardManager.dll'
|
2020-05-16 06:11:38 +08:00
|
|
|
- 'modules\launcher\Microsoft.PowerToys.Settings.UI.Lib.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\ManagedCommon.dll'
|
|
|
|
- 'modules\launcher\Microsoft.Launcher.dll'
|
2020-05-27 23:22:18 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Calculator\Microsoft.Plugin.Calculator.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Calculator\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Calculator\Wox.Plugin.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Calculator\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Folder\Microsoft.Plugin.Folder.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Folder\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Folder\Wox.Plugin.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Folder\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Indexer\Microsoft.Plugin.Indexer.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Indexer\Wox.Infrastructure.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Indexer\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Program\Microsoft.Plugin.Program.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Program\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Program\Wox.Plugin.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Program\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Shell\Microsoft.Plugin.Shell.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Shell\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Shell\Wox.Plugin.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Shell\Telemetry.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Uri\Microsoft.Plugin.Uri.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Uri\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Uri\Wox.Plugin.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.Uri\Telemetry.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Wox.Plugin.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'modules\launcher\Plugins\Microsoft.Plugin.WindowWalker\Telemetry.dll'
|
2020-05-16 06:11:38 +08:00
|
|
|
- 'modules\launcher\PowerLauncher.dll'
|
|
|
|
- 'modules\launcher\PowerLauncher.exe'
|
|
|
|
- 'modules\launcher\PowerLauncher.Telemetry.dll'
|
|
|
|
- 'modules\launcher\PowerLauncher.UI.exe'
|
|
|
|
- 'modules\launcher\PowerToysInterop.dll'
|
|
|
|
- 'modules\launcher\Telemetry.dll'
|
|
|
|
- 'modules\launcher\Wox.dll'
|
|
|
|
- 'modules\launcher\Wox.Infrastructure.dll'
|
|
|
|
- 'modules\launcher\Wox.Plugin.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'modules\Microsoft.Launcher.dll'
|
2020-05-28 22:53:16 +08:00
|
|
|
- 'modules\PowerRename\PowerRenameExt.dll'
|
2020-05-28 22:23:03 +08:00
|
|
|
- 'modules\ShortcutGuide\ShortcutGuide.dll'
|
2020-05-15 02:22:13 +08:00
|
|
|
- 'Notifications.dll'
|
|
|
|
- 'os-detection.dll'
|
|
|
|
- 'PowerToys.exe'
|
|
|
|
- 'PowerToysInterop.dll'
|
|
|
|
- 'PowerToysSettings.exe'
|
2020-05-16 06:11:38 +08:00
|
|
|
- 'SettingsUIRunner\Microsoft.PowerToys.Settings.UI.exe'
|
|
|
|
- 'SettingsUIRunner\Microsoft.PowerToys.Settings.UI.Lib.dll'
|
|
|
|
- 'SettingsUIRunner\Microsoft.PowerToys.Settings.UI.Runner.dll'
|
|
|
|
- 'SettingsUIRunner\Microsoft.PowerToys.Settings.UI.Runner.exe'
|
|
|
|
- 'SettingsUIRunner\PowerToysInterop.dll'
|
|
|
|
- 'SettingsUIRunner\Telemetry.dll'
|
2020-11-20 04:29:14 +08:00
|
|
|
- 'SettingsUIRunner\ManagedCommon.dll'
|
2019-10-10 03:21:21 +08:00
|
|
|
signing_options:
|
|
|
|
sign_inline: true # This does signing a soon as this command completes
|
2020-12-22 22:15:46 +08:00
|
|
|
- !!buildcommand
|
|
|
|
name: 'Build Power Toys Tools'
|
|
|
|
command: '.pipelines\build-tools.cmd'
|
|
|
|
artifacts:
|
|
|
|
- from: 'x64\Release'
|
|
|
|
to: 'Build_Output'
|
|
|
|
include:
|
|
|
|
- 'BugReportTool\BugReportTool.exe'
|
|
|
|
signing_options:
|
|
|
|
sign_inline: true # This does signing a soon as this command completes
|
2019-10-10 03:21:21 +08:00
|
|
|
- !!buildcommand
|
|
|
|
name: 'Build Power Toys Installer'
|
|
|
|
command: '.pipelines\build-installer.cmd'
|
|
|
|
artifacts:
|
|
|
|
- from: 'installer\PowerToysSetup\x64\Release'
|
|
|
|
to: 'Build_Installer_Output'
|
|
|
|
include:
|
2020-03-05 22:52:21 +08:00
|
|
|
- 'PowerToysSetup-*.msi'
|
2019-10-10 03:21:21 +08:00
|
|
|
signing_options:
|
|
|
|
sign_inline: true # This does signing a soon as this command completes
|
2020-07-28 00:53:29 +08:00
|
|
|
- !!buildcommand
|
|
|
|
name: 'Build Power Toys Bootstrapper'
|
|
|
|
command: '.pipelines\build-bootstrapper.cmd'
|
|
|
|
artifacts:
|
2020-09-09 00:59:57 +08:00
|
|
|
- to: 'Symbols'
|
|
|
|
include:
|
|
|
|
- 'installer\PowerToysBootstrapper\x64\Release\PowerToysSetup-*.pdb'
|
2020-08-05 22:20:50 +08:00
|
|
|
- from: 'installer\PowerToysBootstrapper\x64\Release'
|
2020-07-28 00:53:29 +08:00
|
|
|
to: 'Build_Installer_Output'
|
|
|
|
include:
|
|
|
|
- 'PowerToysSetup-*.exe'
|
|
|
|
signing_options:
|
|
|
|
sign_inline: true # This does signing a soon as this command completes
|
|
|
|
|
2020-02-29 05:44:37 +08:00
|
|
|
|
2020-06-01 22:44:19 +08:00
|
|
|
#package:
|
|
|
|
# commands:
|
|
|
|
# - !!buildcommand
|
|
|
|
# name: 'Build MSIX package'
|
|
|
|
# command: 'installer\msix\build_msix_cdpx.cmd'
|
|
|
|
# artifacts:
|
|
|
|
# - from: 'installer\msix\bin'
|
|
|
|
# to: 'Build_MSIX_Package_Output'
|
|
|
|
# include:
|
|
|
|
# - '*.msix'
|
|
|
|
# - '*.msixbundle'
|
|
|
|
# signing_options:
|
|
|
|
# profile: '400'
|
2019-10-10 23:25:09 +08:00
|
|
|
|
|
|
|
static_analysis_options:
|
|
|
|
binskim_options:
|
|
|
|
files_to_scan:
|
|
|
|
- from: 'installer/packages'
|
|
|
|
exclude:
|
2020-02-27 05:44:25 +08:00
|
|
|
- 'WiX.*/**/*.dll'
|
|
|
|
- 'Wix.*/**/*.exe'
|
2019-10-15 05:08:08 +08:00
|
|
|
moderncop_options:
|
|
|
|
files_to_scan:
|
|
|
|
- from: 'src'
|
|
|
|
exclude:
|
2020-02-25 06:49:28 +08:00
|
|
|
- '**/just.config.js'
|
|
|
|
- '**/webpack.config.js'
|
|
|
|
- '**/webpack.serve.config.js'
|
|
|
|
- '**/dist/bundle.js'
|
2020-10-13 06:31:47 +08:00
|
|
|
policheck_options:
|
|
|
|
files_to_scan:
|
|
|
|
- exclude:
|
|
|
|
- '**/*.lcl'
|
2020-02-28 09:29:22 +08:00
|
|
|
|