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

nunit.csproj « Test « Mono.C5 « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48ae348935dce104b25a85a13cfcfe053afe9fdd (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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{08CBFDEB-A2E2-4F0E-A4E1-B996B05569DE}</ProjectGuid>
    <OutputType>Library</OutputType>
    <StartupObject>
    </StartupObject>
    <RootNamespace>nunit</RootNamespace>
    <NoStandardLibraries>false</NoStandardLibraries>
    <AssemblyName>nunit</AssemblyName>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <DebugSymbols>true</DebugSymbols>
    <Optimize>false</Optimize>
    <OutputPath>.\bin\Debug\</OutputPath>
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <WarningLevel>4</WarningLevel>
    <IncrementalBuild>false</IncrementalBuild>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <DebugSymbols>false</DebugSymbols>
    <Optimize>true</Optimize>
    <OutputPath>.\bin\Release\</OutputPath>
    <EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
    <DefineConstants>TRACE</DefineConstants>
    <WarningLevel>4</WarningLevel>
    <IncrementalBuild>false</IncrementalBuild>
  </PropertyGroup>
  <ItemGroup>
    <ProjectReference Include="..\C5\C5.csproj">
      <Project>{D70489CD-ABDA-48FF-BD1E-BE3F7495BE71}</Project>
      <Package>{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</Package>
      <Name>C5</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="arrays\CircularQueueTest.cs" />
    <Compile Include="AssemblyInfo.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="BasesTest.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Records.cs" />
    <Compile Include="Sorting.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="SupportClasses.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="arrays\ArrayListTest.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="arrays\HashedArrayListTest.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="arrays\SortedArrayTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="hashing\HashBagTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="hashing\HashDictionaryTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="hashing\HashTableTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="heaps\HeapTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="linkedlists\HashedLinkedListTest.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="linkedlists\LinkedListTest.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="templates\Clone.cs" />
    <Compile Include="templates\Events.cs" />
    <Compile Include="templates\GenericCollectionTester.cs" />
    <Compile Include="templates\List.cs" />
    <Compile Include="trees\Bag.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="trees\Dictionary.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="trees\RedBlackTreeSetTests.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="WrappersTest.cs" />
  </ItemGroup>
  <ItemGroup>
    <AppDesigner Include="Properties\" />
  </ItemGroup>
  <ItemGroup>
    <Reference Include="nunit.framework, Version=2.2.6.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Properties\" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
  <PropertyGroup>
    <PreBuildEvent>
    </PreBuildEvent>
    <PostBuildEvent>
    </PostBuildEvent>
  </PropertyGroup>
  <ProjectExtensions>
    <VisualStudio>
    </VisualStudio>
  </ProjectExtensions>
</Project>