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

Test.csproj « CoreCLR « tests - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12021e49d02d7ab0542cc57686a1fcddbb5fd417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

  <PropertyGroup>
    <TargetName>$(TestFileName)</TargetName>
    <TargetExt>.exe</TargetExt>
    <OutputType>Exe</OutputType>
    <OutputPath>$(MSBuildProjectDirectory)\</OutputPath>
    <IntermediateOutputPath>$(MSBuildProjectDirectory)\</IntermediateOutputPath>
  </PropertyGroup>

  <ItemGroup>
    <!-- Some tests consist of multiple assemblies - make sure ILC sees them -->
    <IlcReference Include="$(MSBuildProjectDirectory)\*.dll" />
  </ItemGroup>
  
  <Import Project="$(CoreRT_TestRoot)\Test.Common.targets" />
  
  <!-- Since tests are already compiled, override Compile target to prevent CSC running -->
  <Target Name="Compile" />
</Project>