Skip to content

Commit

Permalink
Properly pass project name
Browse files Browse the repository at this point in the history
  • Loading branch information
keveleigh committed Mar 23, 2022
1 parent e063c88 commit 850145e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipelines/templates/common.yml
Expand Up @@ -45,7 +45,7 @@ steps:
- ${{ if eq(parameters.buildUWPx86, true) }}:
- template: tasks/build-appx.yaml
parameters:
ProjectName: ${{ parameters.ProjectName }}
ProjectName: MixedRealityToolkit
Architectures: [x86]
BuildFolderPath: $(Agent.TempDirectory)/build/uwp

Expand All @@ -59,7 +59,7 @@ steps:
- ${{ if eq(parameters.buildUWPArm, true) }}:
- template: tasks/build-appx.yaml
parameters:
ProjectName: ${{ parameters.ProjectName }}
ProjectName: MixedRealityToolkit
Architectures: [ARM]
BuildFolderPath: $(Agent.TempDirectory)/build/uwp

Expand All @@ -73,7 +73,7 @@ steps:
- ${{ if eq(parameters.buildUWPArm64, true) }}:
- template: tasks/build-appx.yaml
parameters:
ProjectName: ${{ parameters.ProjectName }}
ProjectName: MixedRealityToolkit
Architectures: [ARM64]
BuildFolderPath: $(Agent.TempDirectory)/build/uwp

Expand Down

0 comments on commit 850145e

Please sign in to comment.