@@ -334,7 +334,7 @@ extends:
334
334
335
335
- template : .ado/templates/apply-published-version-vars.yml@self
336
336
337
- - ${{ if eq($( 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($( UseFabric) , true) }} :
357
+ ${{ if eq(variables. UseFabric, true) }} :
358
358
artifactName : ReactWindowsFabric
359
- ${{ if eq($( UseFabric) , false) }} :
359
+ ${{ if eq(variables. UseFabric, false) }} :
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($( 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($( UseFabric) , false) }} :
397
+ ${{ if eq(variables. UseFabric, false) }} :
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