Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dir.proj « external - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43b80856fff0485f5de9346e4f862ed5757f86d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project ToolsVersion="14.0" DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="../dir.props" />

  <PropertyGroup>
    <AdditionalBuildConfigurations>$(AdditionalBuildConfigurations);netstandard-$(OSGroup)-$(ConfigurationGroup)-$(ArchGroup)</AdditionalBuildConfigurations>
  </PropertyGroup>

  <!-- Build for all configurations -->
  <ItemGroup>
    <Project Condition="'$(BuildAllConfigurations)' == 'true'" Include="netcoreapp/netcoreapp.depproj" />
    <Project Condition="'$(BuildAllConfigurations)' == 'true'" Include="uap/uap.depproj" />
    <Project Include="netstandard/netstandard.depproj" />
    <Project Include="netfx/netfx.depproj" />
    <Project Include="runtime/runtime.depproj" />
    <Project Include="test-runtime/XUnit.Runtime.depproj"  Condition="'$(DotNetBuildFromSource)' != 'true'" />
    <Project Include="harvestPackages/harvestPackages.depproj" />
    <Project Include="portable/portable.depproj" />
    <Project Include="docs/docs.depproj" Condition="'$(DotNetBuildFromSource)' != 'true'" />
    <Project Condition="'$(ILLinkTrimAssembly)' != 'false'" Include="ILLink/ILLink.depproj" />
  </ItemGroup>

  <Import Project="../dir.traversal.targets" />
</Project>