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
Copy file name to clipboardExpand all lines: eng/pipelines/templates/Build.yml
+27-24Lines changed: 27 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@ parameters:
4
4
- name: SigningType
5
5
displayName: Type of signing to use
6
6
type: string
7
+
- name: isOfficialBuild
8
+
type: boolean
7
9
8
10
steps:
9
11
- task: PowerShell@1
@@ -300,27 +302,28 @@ steps:
300
302
# Using MSBuild CLI results in an assembly binding failure for NuGet.Common.dll 4.4.0.3 because Microsoft.DotNet.Build.Tasks.Feed.dll references SleetLib.dll which references NuGet.Common 4.4.0.3.
301
303
# The Microsoft.DotNet.Build.Tasks.Feed package includes NuGet.Common 4.9.0.6 and a binding redirection in Microsoft.DotNet.Build.Tasks.Feed.dll.config but the binding redirection is not processed.
302
304
# This would probably solve it: https://github.com/Microsoft/msbuild/issues/1309
303
-
- task: UseDotNet@2
304
-
displayName: "Install .NET 10.0.0 for BAR publishing"
0 commit comments