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

Mono.Linker.Tests.csproj « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e1b444181946608ae866a23e85823d58eafb1cc (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <ProjectGuid>{400A1561-B6B6-482D-9E4C-3DDAEDE5BD07}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <AssemblyName>Mono.Linker.Tests</AssemblyName>
    <StartupObject>
    </StartupObject>
    <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
    <RootNamespace>Mono.Linker</RootNamespace>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Core" />
    <Reference Include="nunit.framework">
      <HintPath>..\..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Properties\" />
    <Folder Include="TestCasesRunner\" />
    <Folder Include="Extensions\" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\cecil\Mono.Cecil.csproj">
      <Project>{D68133BD-1E63-496E-9EDE-4FBDBF77B486}</Project>
      <Name>Mono.Cecil</Name>
    </ProjectReference>
    <ProjectReference Include="..\Mono.Linker.csproj">
      <Project>{DD28E2B1-057B-4B4D-A04D-B2EBD9E76E46}</Project>
      <Name>Mono.Linker</Name>
    </ProjectReference>
    <ProjectReference Include="Mono.Linker.Tests.Cases\Mono.Linker.Tests.Cases.csproj">
      <Project>{B6BEE6AA-ADA0-4E1D-9A17-FBF2936F82B5}</Project>
      <Name>Mono.Linker.Tests.Cases</Name>
    </ProjectReference>
    <ProjectReference Include="Mono.Linker.Tests.Cases.Expectations\Mono.Linker.Tests.Cases.Expectations.csproj">
      <Project>{2C26601F-3E2F-45B9-A02F-58EE9296E19E}</Project>
      <Name>Mono.Linker.Tests.Cases.Expectations</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <None Include="packages.config" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="TestCases\TestSuites.cs" />
    <Compile Include="TestCases\TestDatabase.cs" />
    <Compile Include="Tests\PreserveActionComparisonTests.cs" />
    <Compile Include="TestCasesRunner\LinkXmlHelpers.cs" />
    <Compile Include="TestCasesRunner\LinkedTestCaseResult.cs" />
    <Compile Include="TestCasesRunner\ManagedCompilationResult.cs" />
    <Compile Include="TestCasesRunner\TestCaseCollector.cs" />
    <Compile Include="TestCasesRunner\TestCaseLinkerOptions.cs" />
    <Compile Include="TestCasesRunner\TestRunner.cs" />
    <Compile Include="TestCases\TestCase.cs" />
    <Compile Include="Extensions\NiceIO.cs" />
    <Compile Include="Extensions\CecilExtensions.cs" />
    <Compile Include="TestCasesRunner\ExpectationsProvider.cs" />
    <Compile Include="TestCasesRunner\AssemblyChecker.cs" />
    <Compile Include="TestCasesRunner\LinkerArgumentBuilder.cs" />
    <Compile Include="TestCasesRunner\LinkerDriver.cs" />
    <Compile Include="TestCasesRunner\ObjectFactory.cs" />
    <Compile Include="TestCasesRunner\ResultChecker.cs" />
    <Compile Include="TestCasesRunner\TestCaseCompiler.cs" />
    <Compile Include="TestCasesRunner\TestCaseMetadaProvider.cs" />
    <Compile Include="TestCasesRunner\TestCaseSandbox.cs" />
  </ItemGroup>
</Project>