Enable CI for dev/build-features branch (#2186)

* Updated Yaml to include dev/build-feature

* Added default icons
This commit is contained in:
udit3333 2020-04-21 10:29:02 -07:00 committed by GitHub
parent b715a008c5
commit 19ee55a303
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 18 additions and 10 deletions

View File

@ -3,6 +3,7 @@ trigger:
branches: branches:
include: include:
- master - master
- dev/build-features
paths: paths:
exclude: exclude:
- doc/* - doc/*
@ -13,6 +14,7 @@ pr:
branches: branches:
include: include:
- master - master
- dev/build-features
# 0.0.yyMM.dd## # 0.0.yyMM.dd##
# 0.0.1904.0900 # 0.0.1904.0900

View File

@ -7,9 +7,9 @@ steps:
clean: true clean: true
- task: NuGetToolInstaller@0 - task: NuGetToolInstaller@0
displayName: Ensure NuGet 4.8.1 displayName: Ensure NuGet 5.5.0
inputs: inputs:
versionSpec: 4.8.1 versionSpec: 5.5.0
- task: VisualStudioTestPlatformInstaller@1 - task: VisualStudioTestPlatformInstaller@1
displayName: Ensure VSTest Platform displayName: Ensure VSTest Platform

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -112,8 +112,13 @@
</AppxManifest> </AppxManifest>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="Assets\Logo.png" /> <Content Include="Assets\Logo.scale-200.png" />
<Content Include="Assets\Logo44.png" /> <Content Include="Assets\SplashScreen.png" />
<Content Include="Assets\Square150x150Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.scale-100.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
<Content Include="Properties\Default.rd.xml" /> <Content Include="Properties\Default.rd.xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -34,13 +34,14 @@
<uap:VisualElements <uap:VisualElements
DisplayName="PowerToys" DisplayName="PowerToys"
Description="Windows system utilities to maximize productivity" Description="Windows system utilities to maximize productivity"
BackgroundColor="transparent" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\logo44.png"> BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png">
<uap:DefaultTile ShortName="PowerToys" Square71x71Logo="Assets\logo44.png" Wide310x150Logo="Assets\Logo.png" Square310x310Logo="Assets\Logo.png"> <uap:DefaultTile ShortName="PowerToys" Wide310x150Logo="Assets\Wide310x150Logo.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square150x150Logo"/>
<uap:ShowOn Tile="wide310x150Logo"/>
</uap:ShowNameOnTiles>
</uap:DefaultTile > </uap:DefaultTile >
<uap:SplashScreen BackgroundColor="#FFFFFF" Image="Assets\Logo.png"/> <uap:SplashScreen BackgroundColor="#FFFFFF" Image="Assets\SplashScreen.png"/>
<uap:InitialRotationPreference>
<uap:Rotation Preference="landscape"/></uap:InitialRotationPreference>
<uap:LockScreen BadgeLogo="Assets\logo.png" Notification="badgeAndTileText"/>
</uap:VisualElements> </uap:VisualElements>
</Application> </Application>
</Applications> </Applications>