@@ -231,7 +231,7 @@ extends:
231
231
oneESMode : true # # Files are only copied to staging, not published
232
232
${{ if eq(matrix.UseFabric, true) }} :
233
233
artifactName : DesktopFabric
234
- ${{ if eq(matrix.UseFabric, false) }} :
234
+ ${{ else }} :
235
235
artifactName : Desktop
236
236
buildPlatform : ${{ matrix.BuildPlatform }}
237
237
buildConfiguration : ${{ matrix.BuildConfiguration }}
@@ -262,7 +262,7 @@ extends:
262
262
displayName : ' Publish Artifact: DesktopFabric.${{matrix.buildPlatform}}.${{matrix.buildConfiguration}}'
263
263
artifactName : DesktopFabric.${{matrix.buildPlatform}}.${{matrix.buildConfiguration}}
264
264
targetPath : $(Build.StagingDirectory)/NuGet/DesktopFabric/${{matrix.buildPlatform}}/${{matrix.buildConfiguration}}
265
- ${{ if eq(matrix.UseFabric, false) }} :
265
+ ${{ else }} :
266
266
displayName : ' Publish Artifact: Desktop.${{matrix.buildPlatform}}.${{matrix.buildConfiguration}}'
267
267
artifactName : Desktop.${{matrix.buildPlatform}}.${{matrix.buildConfiguration}}
268
268
targetPath : $(Build.StagingDirectory)/NuGet/Desktop/${{matrix.buildPlatform}}/${{matrix.buildConfiguration}}
@@ -334,7 +334,7 @@ extends:
334
334
335
335
- template : .ado/templates/apply-published-version-vars.yml@self
336
336
337
- - ${{ if eq(variables. UseFabric, true) }} :
337
+ - ${{ if eq(variables[' UseFabric'], ' true' ) }} :
338
338
- template : .ado/templates/enable-fabric-experimental-feature.yml@self
339
339
340
340
- template : .ado/templates/msbuild-sln.yml@self
@@ -354,9 +354,9 @@ extends:
354
354
- template : .ado/templates/publish-build-artifacts.yml@self
355
355
parameters :
356
356
oneESMode : true # # Files are only copied to staging, not published
357
- ${{ if eq(variables. UseFabric, true) }} :
357
+ ${{ if eq(variables[' UseFabric'], ' true' ) }} :
358
358
artifactName : ReactWindowsFabric
359
- ${{ if eq(variables.UseFabric, false) }} :
359
+ ${{ else }} :
360
360
artifactName : ReactWindows
361
361
buildPlatform : $(BuildPlatform)
362
362
buildConfiguration : $(BuildConfiguration)
@@ -390,11 +390,11 @@ extends:
390
390
targetPath : ' $(CrashDumpRootPath)'
391
391
artifactName : Crash dumps - $(Agent.JobName)-$(System.JobAttempt)
392
392
- output : pipelineArtifact
393
- ${{ if eq(variables. UseFabric, true) }} :
393
+ ${{ if eq(variables[' UseFabric'], ' true' ) }} :
394
394
displayName : ' Publish Artifact: ReactWindowsFabric.$(BuildPlatform).$(BuildConfiguration)'
395
395
artifactName : ReactWindowsFabric.$(BuildPlatform).$(BuildConfiguration)
396
396
targetPath : $(Build.StagingDirectory)/NuGet/ReactWindowsFabric/$(BuildPlatform)/$(BuildConfiguration)
397
- ${{ if eq(variables.UseFabric, false) }} :
397
+ ${{ else }} :
398
398
displayName : ' Publish Artifact: ReactWindows.$(BuildPlatform).$(BuildConfiguration)'
399
399
artifactName : ReactWindows.$(BuildPlatform).$(BuildConfiguration)
400
400
targetPath : $(Build.StagingDirectory)/NuGet/ReactWindows/$(BuildPlatform)/$(BuildConfiguration)
0 commit comments