Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 30ab651

Browse files
authored
Fix extra space in MSBuild variable that causes BuildingAnOfficialBuildLeg to be set incorrectly. (#29640)
1 parent 597397f commit 30ab651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dir.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- Used to determine if we should build some packages only once across multiple official build legs.
77
For offline builds we still set OfficialBuildId but we need to build all the packages for a single
88
leg only, so we also take DotNetBuildFromSource into account. -->
9-
<BuildingAnOfficialBuildLeg Condition="'$(BuildingAnOfficialBuildLeg)' == '' AND '$(OfficialBuildId)' != '' AND '$(DotNetBuildFromSource )' != 'true'">true</BuildingAnOfficialBuildLeg>
9+
<BuildingAnOfficialBuildLeg Condition="'$(BuildingAnOfficialBuildLeg)' == '' AND '$(OfficialBuildId)' != '' AND '$(DotNetBuildFromSource)' != 'true'">true</BuildingAnOfficialBuildLeg>
1010
</PropertyGroup>
1111

1212
<!-- Packages opt-in to automatic RID-specific builds by placing a *.RID.props next to their project

0 commit comments

Comments
 (0)