You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host-object " Clean (-cl) - [switch] - Indicates that this should be a clean build."
121
116
Write-Host-object " SkipRestore (-sr) - [switch] - Indicates nuget package restoration should be skipped."
122
117
Write-Host-object " ClearPackageCache (-cache) - [switch] - Indicates local package cache should be cleared before restore."
123
-
Write-Host-object " Updatexlf (-uxlf) - [switch] - Indicates that there are resource changes and that these need to be copied to other languages as well."
124
-
Write-Host-object " IsLocalizedBuild (-loc) - [switch] - Indicates that the build needs to generate resource assemblies as well."
125
118
Write-Host-object " DisallowPrereleaseMSBuild (-np) - [switch] - Uses an RTM version of MSBuild to build the projects"
126
119
Write-Host-object ""
127
120
Write-Host-object " Configuration (-c) - [string] - Specifies the build configuration. Defaults to 'Debug'."
@@ -205,8 +198,6 @@ function Invoke-MSBuild([string]$solution, $buildTarget = $Target, $hasVsixExten
205
198
$argument=@("-t:$buildTarget",
206
199
"-p:Configuration=$configuration",
207
200
"-v:m",
208
-
"-p:IsLocalizedBuild=$TFB_IsLocalizedBuild",
209
-
"-p:UpdateXlf=$TFB_UpdateXlf",
210
201
"-p:BuildVersion=$TFB_BuildVersion",
211
202
"-p:BranchName=`"$TFB_BRANCH`"",
212
203
"-p:CommitHash=$TFB_COMMIT",
@@ -217,6 +208,10 @@ function Invoke-MSBuild([string]$solution, $buildTarget = $Target, $hasVsixExten
<PublicSignCondition=" '$(IsLocalizedBuild)' == '' or '$(IsLocalizedBuild)' != 'true'">true</PublicSign>
16
-
17
15
<!-- Temporarily turning on Delay signing for Localized builds because publickey = true is not passed on to the assembler to create resource assmblies.-->
0 commit comments