![Dan Seefeldt](/assets/img/avatar_default.png)
* Initial checkin of source-build tarball build infra * Add a couple more comments * Update eng/SourceBuild.Version.Details.xml based on PR review Co-authored-by: Chris Rummel <crummel@microsoft.com> * Updates based on PR review comments Co-authored-by: Chris Rummel <crummel@microsoft.com>
17 lines
683 B
XML
17 lines
683 B
XML
<Project>
|
|
|
|
<ItemGroup Condition="'$(SkipProductionBuild)' != 'true'">
|
|
<ProjectToBuild Include="$(RepoRoot)build.proj" />
|
|
</ItemGroup>
|
|
|
|
<!-- Prevent Arcade from trying to find something to build, if we want to build nothing. -->
|
|
<ItemGroup Condition="'@(ProjectToBuild)' == ''">
|
|
<ProjectToBuild Include="$(MSBuildThisFileDirectory)No.proj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.props, $(MSBuildThisFileDirectory)))" />
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Build.targets, $(MSBuildThisFileDirectory)))" />
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)SourceBuild.Tarball.targets" />
|
|
|
|
</Project>
|