@@ -68,7 +68,7 @@ parameters:
6868 - name : signingIdentity
6969 type : object
7070 default : {}
71- - name : enableCaching
71+ - name : enableMsBuildCaching
7272 type : boolean
7373 default : false
7474
@@ -144,7 +144,7 @@ jobs:
144144 }
145145 displayName: Prepare Build and Sign Targets
146146
147- - ${{ if eq(parameters.enableCaching , true) }} :
147+ - ${{ if eq(parameters.enableMsBuildCaching , true) }} :
148148 - pwsh : |-
149149 $MSBuildCacheParameters = ""
150150 $MSBuildCacheParameters += " -graph"
@@ -183,7 +183,7 @@ jobs:
183183 configuration : $(BuildConfiguration)
184184 msbuildArchitecture : x64
185185 maximumCpuCount : true
186- ${{ if eq(parameters.enableCaching , true) }} :
186+ ${{ if eq(parameters.enableMsBuildCaching , true) }} :
187187 env :
188188 SYSTEM_ACCESSTOKEN : $(System.AccessToken)
189189
@@ -192,7 +192,7 @@ jobs:
192192 artifact : logs-$(BuildPlatform)-$(BuildConfiguration)${{ parameters.artifactStem }}
193193 condition : always()
194194 displayName : Publish Build Log
195- - ${{ if eq(parameters.enableCaching , true) }} :
195+ - ${{ if eq(parameters.enableMsBuildCaching , true) }} :
196196 - publish : $(Build.SourcesDirectory)\MSBuildCacheLogs
197197 artifact : logs-msbuildcache-$(BuildPlatform)-$(BuildConfiguration)${{ parameters.artifactStem }}
198198 condition : always()
@@ -203,7 +203,7 @@ jobs:
203203 inputs :
204204 contents : $(Build.SourcesDirectory)/msbuild.binlog
205205 TargetFolder : $(Terminal.BinDir)
206- - ${{ if eq(parameters.enableCaching , true) }} :
206+ - ${{ if eq(parameters.enableMsBuildCaching , true) }} :
207207 - task : CopyFiles@2
208208 displayName : Copy MSBuildCache Logs
209209 inputs :
0 commit comments