Skip to content

Commit 0e83773

Browse files
committed
Fix pipeline
1 parent 42ebbc1 commit 0e83773

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

builds/azure-pipelines-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656
inputs:
5757
targetType: 'inline'
5858
script: |
59-
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest'
59+
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest'
6060
$xmlDoc.Package.Identity.Name="${{parameters.packageIdentityName}}"
6161
$xmlDoc.Package.Identity.Publisher="Files"
6262
$xmlDoc.Package.Properties.DisplayName="${{parameters.packageDisplayName}}"
6363
$xmlDoc.Package.Applications.Application.VisualElements.DisplayName="${{parameters.packageDisplayName}}"
64-
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest')
64+
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest')
6565
failOnStderr: true
6666

6767
# This replaces references to the dev icon with the specified icon variant
@@ -168,7 +168,7 @@ jobs:
168168
inputs:
169169
targetType: 'inline'
170170
script: |
171-
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest'
171+
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest'
172172
$xmlDoc.Package.Identity.Name="49306atecsolution.FilesUWP"
173173
$xmlDoc.Package.Identity.Publisher="CN=53EC4384-7F5B-4CF6-8C23-513FFE9D1AB7"
174174
$xmlDoc.Package.Properties.DisplayName="Files"
@@ -179,7 +179,7 @@ jobs:
179179
$nsmgr.AddNamespace("rescap", "http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities")
180180
$pm = $xmlDoc.SelectSingleNode("/pkg:Package/pkg:Capabilities/rescap:Capability[@Name='packageManagement']", $nsmgr)
181181
$xmlDoc.Package.Capabilities.RemoveChild($pm)
182-
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest')
182+
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest')
183183
failOnStderr: true
184184

185185
# This replaces references to the dev icon with the specified icon variant

builds/azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ steps:
1515
inputs:
1616
targetType: 'inline'
1717
script: |
18-
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest'
18+
[xml]$xmlDoc = Get-Content '$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest'
1919
$xmlDoc.Package.Identity.Name="49306atecsolution.FilesUWP"
2020
$xmlDoc.Package.Identity.Publisher="CN=53EC4384-7F5B-4CF6-8C23-513FFE9D1AB7"
2121
$xmlDoc.Package.Properties.DisplayName="Files"
2222
$xmlDoc.Package.Applications.Application.VisualElements.DisplayName="Files"
23-
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.Package\Package.appxmanifest')
23+
$xmlDoc.Save('$(Build.SourcesDirectory)\src\Files.App (Package)\Package.appxmanifest')
2424
failOnStderr: true
2525

2626
- task: PowerShell@2

0 commit comments

Comments
 (0)