mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00

* Remove custom rebuild entry point in Build.proj
The rebuild target was added into the Traversal SDK here: fd7660d62b (diff-ad560c0828c6bab536a01e43bb052bfce14a959b8df2c3f89cccfca0b399681c)
* Update global.json
* Update global.json
* Update native-binplace.proj
* Update externals.csproj
* Update native-binplace.proj
* Update native-binplace.proj
* Default tfm for NoTargets projects
* Don't run GenFacades on ApiCompat.proj
* ApiCompat fix and packaging cleanup
* Fixes
* Only set if not multi-targeting
21 lines
938 B
XML
21 lines
938 B
XML
<Project Sdk="Microsoft.Build.Traversal">
|
|
|
|
<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>
|
|
|
|
<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>
|