Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Ensure we generate version prop before sync parallel build
Browse files Browse the repository at this point in the history
We need to generate the buildversion props file before we start
a parallel build otherwise we race condition that can break
the build.
  • Loading branch information
weshaggard committed Jul 16, 2018
1 parent 44454c1 commit 682b8d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<GenerateConfigurationProps Properties="@(Property)" PropertyValues="@(PropertyValue)" PropsFolder="$(BuildConfigurationFolder)" />
</Target>

<Target Name="Sync" DependsOnTargets="GenerateConfigurationProperties">
<Target Name="Sync" DependsOnTargets="$(TraversalBuildDependsOn)">
<ItemGroup>
<ExternalProject Include="external\dir.proj" />
</ItemGroup>
Expand Down

0 comments on commit 682b8d9

Please sign in to comment.