mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-11 18:20:26 +09:00

- Produce a merged mibc with all scenarios squished together - Properly attach the mibc data to the incremental build for System.Private.CoreLib - This can't be done for the framework here. It will require mibc integration in the SDK - Enable pgo optimization in checked builds - Enable pgo optimization in framework compile for outerloop runs
28 lines
No EOL
1.3 KiB
XML
28 lines
No EOL
1.3 KiB
XML
<Project Sdk="Microsoft.Build.Traversal">
|
|
|
|
<PropertyGroup>
|
|
<TraversalGlobalProperties Condition="'$(BuildAllConfigurations)' != 'true'">BuildTargetFramework=$([MSBuild]::ValueOrDefault('$(BuildTargetFramework)', '$(NetCoreAppCurrent)'))</TraversalGlobalProperties>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Subsets are already imported by Directory.Build.props. -->
|
|
<ProjectReference Include="@(ProjectToBuild)" />
|
|
<!-- Only include tasks.proj during restore and build incrementally via a target. -->
|
|
<ProjectReference Include="$(RepoTasksDir)tasks.proj" Condition="'$(MSBuildRestoreSessionId)' != ''" />
|
|
</ItemGroup>
|
|
|
|
<!-- Custom arcade target which isn't available in Microsoft.Build.Traversal. -->
|
|
<Target Name="Rebuild" DependsOnTargets="Clean;Build" />
|
|
|
|
<Import Project="$(RepositoryEngineeringDir)SubsetValidation.targets" />
|
|
|
|
<!-- Upfront restore hooks -->
|
|
<Import Project="$(RepositoryEngineeringDir)restore\docs.targets" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
|
<Import Project="$(RepositoryEngineeringDir)restore\optimizationData.targets" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
|
|
|
<Target Name="BuildLocalTasks"
|
|
BeforeTargets="Build">
|
|
<MSBuild Projects="$(RepoTasksDir)tasks.proj"
|
|
Targets="BuildIncrementally" />
|
|
</Target>
|
|
</Project> |