2021-06-24 16:36:04 -05:00
|
|
|
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<RepoApiImplemented>false</RepoApiImplemented>
|
|
|
|
<SkipEnsurePackagesCreated>true</SkipEnsurePackagesCreated>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- This project file serves a couple of purpose.
|
|
|
|
- We conditionally include repos based on what works on different platforms/configurations.
|
|
|
|
- We need an "empty" build after the last real repo for prebuilt detection to work - this is that file.
|
|
|
|
- If we have a repo that is not in core-sdk's dependency tree, we can still build it by including it here. -->
|
|
|
|
|
|
|
|
<!-- Windows and ARM builds currently only work through core-setup -->
|
|
|
|
<Choose>
|
|
|
|
<When Condition="'$(OS)' == 'Windows_NT'">
|
|
|
|
<ItemGroup>
|
|
|
|
<RepositoryReference Include="runtime" />
|
|
|
|
</ItemGroup>
|
|
|
|
</When>
|
|
|
|
<When Condition="$(Platform.Contains('arm')) AND '$(BuildArchitecture)' != 'arm64'">
|
|
|
|
<ItemGroup>
|
|
|
|
<RepositoryReference Include="runtime" />
|
|
|
|
</ItemGroup>
|
|
|
|
</When>
|
|
|
|
<Otherwise>
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- Toolsets -->
|
|
|
|
<RepositoryReference Include="source-build-reference-packages" />
|
|
|
|
<RepositoryReference Include="sourcelink" />
|
|
|
|
<RepositoryReference Include="arcade" />
|
2021-06-29 21:36:40 -05:00
|
|
|
|
|
|
|
<!-- Tier 1 -->
|
2021-07-01 15:32:30 -05:00
|
|
|
<RepositoryReference Include="clicommandlineparser" />
|
2021-06-29 23:06:52 -05:00
|
|
|
<RepositoryReference Include="command-line-api" />
|
2021-07-06 08:33:00 -05:00
|
|
|
<RepositoryReference Include="diagnostics" />
|
2021-06-29 21:36:40 -05:00
|
|
|
<RepositoryReference Include="source-build" />
|
2021-06-30 21:26:26 -05:00
|
|
|
<RepositoryReference Include="symreader" />
|
2021-06-30 22:30:51 -05:00
|
|
|
<RepositoryReference Include="test-templates" />
|
2021-06-30 01:02:10 -05:00
|
|
|
<RepositoryReference Include="xdt" />
|
2021-06-30 22:21:38 -04:00
|
|
|
<RepositoryReference Include="xliff-tasks" />
|
2021-06-29 21:36:40 -05:00
|
|
|
|
|
|
|
<!-- Tier 2 -->
|
2021-06-24 16:36:04 -05:00
|
|
|
<RepositoryReference Include="linker" />
|
2021-07-09 18:43:57 -05:00
|
|
|
<RepositoryReference Include="msbuild" />
|
2021-07-07 11:27:27 -05:00
|
|
|
<RepositoryReference Include="templating" />
|
2021-06-24 16:36:04 -05:00
|
|
|
|
2021-06-28 17:19:27 -05:00
|
|
|
<!-- Package source-build artifacts -->
|
|
|
|
<RepositoryReference Include="package-source-build" />
|
2021-06-24 16:36:04 -05:00
|
|
|
</ItemGroup>
|
|
|
|
</Otherwise>
|
|
|
|
</Choose>
|
|
|
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
<Target Name="RepoBuild">
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
</Project>
|