* Update to WinUI 2.6 Co-authored-by: Han Zhang <zhangh@microsoft.com> Co-authored-by: Kenny Guo <kennyguo@microsoft.com> **Description of the changes:** 1. Update to WinUI 2.6 styles and controls #1606. 2. Add Mica Material #1611. 3. Add Settings page #596. 4. Fix Ctrl+E shortcuts in AoT mode #1590. **How changes were validated:** Passed build, UT/UI test and manually tested. * Fixed the display issue in AOT mode (#1615) * Fixed the display issue in AOT mode * Get the OpenPaneLength from the resource * Fix CalendarView style in DateCalculation of dark mode (#1616) * Fix a style problem of Date Calculator, and clean some unused codes * Remove some unused codes * Disable Mica before close the window to resolve a crash (#1619) * Bump internal package build number (#1621)
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
#
|
|
# Continuous Integration (CI) - Internal
|
|
# This pipeline builds and validate the app for all supported architectures, in a production
|
|
# configuration. This pipeline relies on Microsoft-internal resources to run.
|
|
#
|
|
|
|
trigger:
|
|
- master
|
|
- release/*
|
|
- feature/*
|
|
pr: none
|
|
|
|
name: 0.$(Date:yyMM).$(DayOfMonth)$(Rev:rr).0
|
|
|
|
jobs:
|
|
- template: ./templates/build-app-internal.yaml
|
|
parameters:
|
|
platform: x64
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
parameters:
|
|
platform: x86
|
|
|
|
- template: ./templates/build-app-internal.yaml
|
|
parameters:
|
|
platform: ARM
|
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
parameters:
|
|
platform: x64
|
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
|
|
- template: ./templates/run-ui-tests.yaml
|
|
parameters:
|
|
platform: x86
|
|
runsettingsFileName: CalculatorUITests.release.runsettings
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
parameters:
|
|
platform: x64
|
|
|
|
- template: ./templates/run-unit-tests.yaml
|
|
parameters:
|
|
platform: x86
|
|
|
|
- template: ./templates/package-appxbundle.yaml
|