Skip to content

Commit

Permalink
Fix: Fixed icons (#10956)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 authored Jan 8, 2023
1 parent fd616d7 commit 4bf420b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions builds/azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
targetType: 'inline'
script: |
gci $(Build.SourcesDirectory)\src -Include *.csproj, *.appxmanifest, *.wapproj -recurse | ForEach -Process {
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "Assets\AppTiles\Dev", "Assets\AppTiles\${{parameters.iconVariant}}"}) | Set-Content $_ -NoNewline
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "Assets\\AppTiles\\Dev", "Assets\AppTiles\${{parameters.iconVariant}}"}) | Set-Content $_ -NoNewline
}
failOnStderr: true

Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
targetType: 'inline'
script: |
gci $(Build.SourcesDirectory)\src -Include *.csproj, *.appxmanifest, *.wapproj -recurse | ForEach -Process {
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "Assets\AppTiles\\Dev", "Assets\AppTiles\Release"}) | Set-Content $_ -NoNewline
(Get-Content $_ -Raw | ForEach -Process {$_ -replace "Assets\\AppTiles\\Dev", "Assets\AppTiles\Release"}) | Set-Content $_ -NoNewline
}
failOnStderr: true

Expand Down Expand Up @@ -272,4 +272,4 @@ jobs:
skipPolling: false
deletePackages: true
numberOfPackagesToKeep: '5'
isMandatoryUpdate: true
isMandatoryUpdate: true
2 changes: 1 addition & 1 deletion src/Files.App (Package)/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
IgnorableNamespaces="uap uap5 mp rescap desktop6 desktop4 desktop">
<Identity Name="FilesDev" Publisher="CN=Files" Version="2.4.13.0" />
<Identity Name="FilesDev" Publisher="CN=Files" Version="2.4.14.0" />
<Properties>
<DisplayName>Files - Dev</DisplayName>
<PublisherDisplayName>Yair A</PublisherDisplayName>
Expand Down

0 comments on commit 4bf420b

Please sign in to comment.