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

TestCases.csproj « TestCases « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 451fe79524767af2396e81e2bf5e339111fca34f (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
<?xml version="1.0" encoding="utf-8"?>
<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>
    <ProjectGuid>{26D857FB-EEE3-4A5B-95BC-DAB39F880A99}</ProjectGuid>
    <OutputType>Library</OutputType>
    <RootNamespace>TestCases</RootNamespace>
    <AssemblyName>TestCases</AssemblyName>
    <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug</OutputPath>
    <DefineConstants>DEBUG;</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <Optimize>true</Optimize>
    <OutputPath>bin\Release</OutputPath>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
  </ItemGroup>
  <ItemGroup>
  </ItemGroup>
  <ItemGroup>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="NotLinkedAttribute.cs" />
    <Compile Include="Linker\Simple\Library.cs" />
    <Compile Include="Linker\Simple\Program.cs" />
    <Compile Include="MarkAttribute.cs" />
    <Compile Include="Linker\VirtualCall\Library.cs" />
    <Compile Include="Linker\VirtualCall\Program.cs" />
    <Compile Include="Linker\MultipleReferences\Bar.cs" />
    <Compile Include="Linker\MultipleReferences\Baz.cs" />
    <Compile Include="Linker\MultipleReferences\Foo.cs" />
    <Compile Include="Linker\MultipleReferences\Program.cs" />
    <Compile Include="Xml\Generics\Library.cs" />
    <Compile Include="Xml\SimpleXml\Library.cs" />
    <Compile Include="Xml\Interface\Library.cs" />
    <Compile Include="Xml\PreserveFieldsRequired\Library.cs" />
    <Compile Include="Xml\NestedNested\Library.cs" />
    <Compile Include="Xml\ReferenceInVirtualMethod\Library.cs" />
    <Compile Include="Xml\XmlPattern\Library.cs" />
    <Compile Include="Xml\ReferenceInAttributes\LibLib.cs" />
    <Compile Include="Xml\ReferenceInAttributes\Library.cs" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Xml\" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Xml\Generics\desc.xml" />
    <EmbeddedResource Include="Xml\SimpleXml\desc.xml" />
    <EmbeddedResource Include="Xml\Interface\desc.xml" />
    <EmbeddedResource Include="Xml\PreserveFieldsRequired\desc.xml" />
    <EmbeddedResource Include="Xml\NestedNested\desc.xml" />
    <EmbeddedResource Include="Xml\ReferenceInVirtualMethod\desc.xml" />
    <EmbeddedResource Include="Xml\XmlPattern\desc.xml" />
    <EmbeddedResource Include="Xml\ReferenceInAttributes\desc.xml" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>