summaryrefslogtreecommitdiff
path: root/src/dirs.proj
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2015-01-30 14:14:42 -0800
committerdotnet-bot <dotnet-bot@microsoft.com>2015-01-30 14:14:42 -0800
commitef1e2ab328087c61a6878c1e84f4fc5d710aebce (patch)
treedee1bbb89e9d722e16b0d1485e3cdd1b6c8e2cfa /src/dirs.proj
downloadcoreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.tar.gz
coreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.tar.bz2
coreclr-ef1e2ab328087c61a6878c1e84f4fc5d710aebce.zip
Initial commit to populate CoreCLR repo
[tfs-changeset: 1407945]
Diffstat (limited to 'src/dirs.proj')
-rw-r--r--src/dirs.proj95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/dirs.proj b/src/dirs.proj
new file mode 100644
index 0000000000..d5df279b42
--- /dev/null
+++ b/src/dirs.proj
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="dogfood">
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.props" />
+
+ <ItemDefinitionGroup>
+ <ProjectFile>
+ <ProductGroups>FX</ProductGroups>
+ </ProjectFile>
+ </ItemDefinitionGroup>
+
+ <PropertyGroup>
+ <BuildInPhase0>true</BuildInPhase0>
+ <BuildInPhase1>true</BuildInPhase1>
+ <BuildInPhase2>true</BuildInPhase2>
+ <BuildCoreBinaries>true</BuildCoreBinaries>
+ <BuildSysBinaries>true</BuildSysBinaries>
+ </PropertyGroup>
+
+ <ItemGroup Condition="'$(BuildExePhase)' == '0'">
+ <ProjectFile Include="zzbuildpreproc\zzbuildpreproc.nativeproj" />
+ </ItemGroup>
+
+
+ <!--The following projects will build during PHASE 1-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '1'">
+ <ProjectFile Include="inc\corguids.nativeproj" />
+ <ProjectFile Include="format\format.nativeproj" />
+ <ProjectFile Include="shimload\shimload.nativeproj" Condition="'$(BuildProjectName)' != 'CoreSys'"/>
+ <ProjectFile Include="utilcode\dirs.proj" />
+ <ProjectFile Include="vm\dirs.proj" />
+ <ProjectFile Include="md\dirs.proj" />
+ <ProjectFile Include="classlibnative\dirs.proj" />
+ <ProjectFile Include="strongname\dirs.proj" >
+ <ProductGroups>VS;FX</ProductGroups>
+ </ProjectFile>
+ <ProjectFile Include="zap\dirs.proj" />
+ <ProjectFile Include="gcdump\lib\gcdump.nativeproj" />
+ <ProjectFile Include="debug\dirs.proj" />
+ <ProjectFile Include="ipcman\dirs.proj" Condition="'$(BuildProjectName)' != 'CoreSys'" />
+ <ProjectFile Include="gcinfo\dirs.proj" />
+ <ProjectFile Include="delayimp\delayimp.nativeproj" Condition="'$(BuildProjectName)' != 'CoreSys'"/>
+ <ProjectFile Include="dlls\dirs.proj" />
+
+ <!-- In FXMain we build RyuJIT only for amd64 and arm64 -->
+ <ProjectFile Include="jit32\dirs.proj" Condition="'$(BuildArchitecture)' != 'amd64' and '$(BuildArchitecture)' != 'arm64'"/>
+ <ProjectFile Include="jit\dirs.proj" Condition="'$(BuildArchitecture)' == 'amd64' or '$(BuildArchitecture)' == 'arm64'"/>
+ <!-- In Codegen we always build RyuJIT this includes x86 as well as amd64 and arm64 ==>
+ <ProjectFile Include="jit\dirs.proj" />
+ -->
+ <ProjectFile Include="jit64\dirs.proj" />
+
+ <ProjectFile Include="tools\dirs.proj" />
+ <ProjectFile Include="toolbox\dirs.proj" >
+ <ProductGroups>VS;FX</ProductGroups>
+ </ProjectFile>
+ <ProjectFile Include="misc\misc.proj" />
+ </ItemGroup>
+
+ <!--The following projects will build during PHASE 1 of the Desktop build-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '1' and '$(FeatureCoreclr)' != 'true'">
+ <ProjectFile Include="defines\defines.nativeproj" />
+ <ProjectFile Include="fusion\dirs.proj" />
+ <ProjectFile Include="nativebinder\nativebinder.nativeproj" />
+ <ProjectFile Include="security\dirs.proj" />
+ <ProjectFile Include="ilasm\ilasm.nativeproj" />
+ <ProjectFile Include="ildasm\dirs.proj" />
+ <ProjectFile Include="profile\dirs.proj" />
+ <ProjectFile Include="bcl\mscorlib.csproj" />
+ <ProjectFile Include="managedlibraries\dirs.proj" />
+ <ProjectFile Include="config\config.nativeproj" >
+ <ProductGroups>VS;FX</ProductGroups>
+ </ProjectFile>
+ <ProjectFile Include="usagelog\usagelog.nativeproj" />
+ <ProjectFile Include="lhdwshim\dirs.proj" />
+ <ProjectFile Include="xmlparser\xmlparser.nativeproj" />
+ </ItemGroup>
+
+ <!--The following projects will build during PHASE 1 of the CoreCLR build-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '1' and '$(FeatureCoreclr)' == 'true'">
+ <ProjectFile Include="bcl.small\dirs.proj" />
+ <ProjectFile Include="coreclr\dirs.proj" />
+ </ItemGroup>
+
+ <!--The following projects will build during PHASE 2 of the Desktop build-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '2' and '$(FeatureCoreclr)' != 'true'">
+ <ProjectFile Include="managedlibraries\dirs.proj" />
+ </ItemGroup>
+
+ <!--The following projects will build during the default PHASE of the Desktop build-->
+ <ItemGroup Condition="'$(BuildExePhase)' == '' and '$(FeatureCoreclr)' != 'true'">
+ <ProjectFile Include="managedlibraries\dirs.proj" />
+ </ItemGroup>
+
+ <Import Project="$(_NTDRIVE)$(_NTROOT)\tools\Microsoft.DevDiv.Traversal.targets" />
+</Project>