2023-02-16 10:48:46 -06:00
|
|
|
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<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 sdk's dependency tree, we can still build it by including it here. -->
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- Toolsets -->
|
|
|
|
<RepositoryReference Include="source-build-reference-packages" />
|
|
|
|
<RepositoryReference Include="sourcelink" />
|
|
|
|
<RepositoryReference Include="arcade" />
|
|
|
|
|
|
|
|
<!-- Product Repos -->
|
|
|
|
<RepositoryReference Include="command-line-api" />
|
|
|
|
<RepositoryReference Include="diagnostics" />
|
|
|
|
<RepositoryReference Include="emsdk" />
|
|
|
|
<RepositoryReference Include="razor" />
|
|
|
|
<RepositoryReference Include="xliff-tasks" />
|
2023-04-11 12:08:45 -05:00
|
|
|
<RepositoryReference Include="cecil" />
|
2023-04-20 12:29:43 -05:00
|
|
|
<RepositoryReference Include="symreader" />
|
|
|
|
<RepositoryReference Include="source-build-externals" />
|
2023-02-16 10:48:46 -06:00
|
|
|
<RepositoryReference Include="runtime" />
|
|
|
|
<RepositoryReference Include="roslyn" />
|
|
|
|
<RepositoryReference Include="xdt" />
|
|
|
|
<RepositoryReference Include="msbuild" />
|
|
|
|
<RepositoryReference Include="roslyn-analyzers" />
|
|
|
|
<RepositoryReference Include="aspnetcore" />
|
|
|
|
<RepositoryReference Include="deployment-tools" />
|
2023-04-20 08:49:04 -05:00
|
|
|
<!-- TODO: Reenable once format targets net8.0 (https://github.com/dotnet/format/issues/1802) -->
|
|
|
|
<!-- <RepositoryReference Include="format" /> -->
|
2023-02-16 10:48:46 -06:00
|
|
|
<RepositoryReference Include="nuget-client" />
|
2023-04-20 12:29:43 -05:00
|
|
|
<RepositoryReference Include="templating" />
|
2023-02-16 10:48:46 -06:00
|
|
|
<RepositoryReference Include="test-templates" />
|
|
|
|
<RepositoryReference Include="fsharp" />
|
|
|
|
<RepositoryReference Include="vstest" />
|
2023-04-20 12:29:43 -05:00
|
|
|
<RepositoryReference Include="sdk" />
|
2023-02-16 10:48:46 -06:00
|
|
|
<RepositoryReference Include="installer" />
|
|
|
|
|
|
|
|
<!-- Package source-build artifacts -->
|
|
|
|
<RepositoryReference Include="package-source-build" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
<Target Name="RepoBuild" />
|
|
|
|
|
|
|
|
</Project>
|