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

dirs.proj « src - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0ab1b264cc0fc266343a68f30dbf1fd7777c989 (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
28
29
30
31
32
33
34
<Project DefaultTargets="BuildAndTest" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="dir.props" />

  <ItemGroup>
    <!-- These projects 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" />
    <ExcludeProjects Condition="'$(OSEnvironment)'!='Windows_NT'" Include="**\ILVerification.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>