summaryrefslogtreecommitdiff
path: root/src/utilcode/dirs.proj
blob: 9749af2b1188c69d15635e2f2c919f3d0722e0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <!--Import the settings-->
    <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.props" />

    <PropertyGroup>
      <BuildInPhase1>true</BuildInPhase1>
      <BuildInPhaseDefault>false</BuildInPhaseDefault>
      <BuildCoreBinaries>true</BuildCoreBinaries>
      <BuildSysBinaries>true</BuildSysBinaries>
    </PropertyGroup>

    <!--The following projects will build during PHASE 1-->
    <ItemGroup Condition="'$(BuildExePhase)' == '1'">
        <ProjectFile Include="dyncrt\dyncrt.nativeproj" />
        <ProjectFile Include="dyncrtnohost\dyncrtnohost.nativeproj" />
        <ProjectFile Include="staticcrt\staticcrt.nativeproj" />
        <ProjectFile Include="staticnohost\staticnohost.nativeproj" />
        <ProjectFile Include="dac\dirs.proj" />
    </ItemGroup>
    
    <!--The following projects will build during PHASE 1 of the Desktop build-->
    <ItemGroup Condition="'$(BuildExePhase)' == '1' and '$(FeatureCoreclr)' != 'true'">
        <ProjectFile Include="nodependencies\utilcode-nodependencies.nativeproj" />
    </ItemGroup>
    
    <Import Project="$(_NTDRIVE)$(_NTROOT)\tools\Microsoft.DevDiv.Traversal.targets" />
</Project>