forked from dotnet/corert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirs.proj
33 lines (23 loc) · 1.55 KB
/
dirs.proj
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
28
29
30
31
32
33
<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="dir.props" />
<ItemGroup>
<!-- This project requires ILASM and we have access to that only on Windows -->
<ExcludeProjects Condition="'$(OSEnvironment)'!='Windows_NT'" Include="**\TypeSystem.Tests.csproj" />
<ExcludeProjects Condition="'$(OSEnvironment)'!='Windows_NT'" Include="**\ILCompiler.MetadataTransform.Tests.csproj" />
<Project Include="AotPackageReference\AotPackageReference.depproj" />
<Project Include="Framework\Framework.depproj" />
<Project Include="Framework\Framework-uapaot.depproj" />
<Project Include="Framework\Framework-native.depproj" Condition="$(TargetsUnix) and '$(Platform)' != 'wasm'" />
<Project Include="ILCompiler\RyuJIT\RyuJIT.depproj" />
<Project Include="ILCompiler\ObjectWriter\ObjectWriter.depproj" />
<Project Include="ILCompiler.WebAssembly\src\libLLVMdep.depproj" />
<Project Include="*\src\*.csproj" Exclude="@(ExcludeProjects)" />
<Project Include="*\src\*.vbproj" Condition="'$(IncludeVbProjects)'!='false'" Exclude="@(ExcludeProjects)" />
<Project Include="*\test*\**\*.csproj" Exclude="@(ExcludeProjects)" />
<Project Include="*\test*\**\*.vbproj" Condition="'$(IncludeVbProjects)'!='false'" Exclude="@(ExcludeProjects)" />
<Project Include="BuildIntegration\BuildIntegration.proj" />
<Project Include="ILCompiler\repro\repro.csproj" />
</ItemGroup>
<Import Project="..\dir.targets" />
<Import Project="..\dir.traversal.targets" />
</Project>