diff --git a/src/Microsoft.DotNet.Arcade.Sdk/tools/Build.proj b/src/Microsoft.DotNet.Arcade.Sdk/tools/Build.proj index 11bc975dd42..2ab29a8762d 100644 --- a/src/Microsoft.DotNet.Arcade.Sdk/tools/Build.proj +++ b/src/Microsoft.DotNet.Arcade.Sdk/tools/Build.proj @@ -13,6 +13,7 @@ DotNetBuildRepo Build the repo as part of the entire .NET stack. DotNetBuildInnerRepo Build the repo as part of the entire .NET stack. This switch is used on the inner repo invocation and should not be passed by the user. DotNetBuildOrchestrator Build the entire .NET stack. + DotNetBuildPass While building the repo as part of the entire .NET stack, this parameter specifies which build pass the current build is part of. DotNetBuildSourceOnly Build the repo as part of the entire .NET stack with no external dependencies. DotNetBuildFromSource Building the entire stack from source with no external dependencies. DotNetPublishUsingPipelines Publish assets to Build Asset Registry. @@ -59,6 +60,9 @@ <_ProjectsPropertyWasUpdatedInBuildProps Condition="'$(_OriginalProjectsValue)' != '$(Projects)'">true + + <_DotNetBuildPassNormalized Condition="'$(DotNetBuildPass)' != ''">$(DotNetBuildPass) + <_DotNetBuildPassNormalized Condition="'$(DotNetBuildPass)' == ''">1 @@ -69,16 +73,29 @@ + + + + + + + + - - + - +