Project

General

Profile

root / branches / compiler / cSharp / ooasCompiler / src / libs / c5 / C5 / C5.csproj @ 3

1
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2
  <PropertyGroup>
3
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4
    <ProductVersion>9.0.21022</ProductVersion>
5
    <SchemaVersion>2.0</SchemaVersion>
6
    <ProjectGuid>{D70489CD-ABDA-48FF-BD1E-BE3F7495BE71}</ProjectGuid>
7
    <OutputType>Library</OutputType>
8
    <RootNamespace>C5</RootNamespace>
9
    <NoStandardLibraries>false</NoStandardLibraries>
10
    <AssemblyName>C5</AssemblyName>
11
    <SignAssembly>false</SignAssembly>
12
    <AssemblyOriginatorKeyFile>
13
    </AssemblyOriginatorKeyFile>
14
    <FileUpgradeFlags>
15
    </FileUpgradeFlags>
16
    <UpgradeBackupLocation>
17
    </UpgradeBackupLocation>
18
    <OldToolsVersion>2.0</OldToolsVersion>
19
    <StartupObject>
20
    </StartupObject>
21
  </PropertyGroup>
22
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23
    <DebugSymbols>true</DebugSymbols>
24
    <DebugType>full</DebugType>
25
    <Optimize>false</Optimize>
26
    <OutputPath>bin\Debug\</OutputPath>
27
    <DefineConstants>DEBUG;TRACE</DefineConstants>
28
    <ErrorReport>prompt</ErrorReport>
29
    <WarningLevel>4</WarningLevel>
30
    <DocumentationFile>c5.xml</DocumentationFile>
31
  </PropertyGroup>
32
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33
    <DebugType>pdbonly</DebugType>
34
    <Optimize>true</Optimize>
35
    <OutputPath>bin\Release\</OutputPath>
36
    <DefineConstants>TRACE</DefineConstants>
37
    <ErrorReport>prompt</ErrorReport>
38
    <WarningLevel>4</WarningLevel>
39
  </PropertyGroup>
40
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugSnk|AnyCPU' ">
41
    <DebugSymbols>true</DebugSymbols>
42
    <OutputPath>bin\DebugSnk\</OutputPath>
43
    <DefineConstants>TRACE;DEBUG;STRONGNAME</DefineConstants>
44
    <DebugType>full</DebugType>
45
    <PlatformTarget>AnyCPU</PlatformTarget>
46
    <ErrorReport>prompt</ErrorReport>
47
  </PropertyGroup>
48
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseSnk|AnyCPU' ">
49
    <OutputPath>bin\ReleaseSnk\</OutputPath>
50
    <DefineConstants>TRACE;STRONGNAME</DefineConstants>
51
    <Optimize>true</Optimize>
52
    <DebugType>pdbonly</DebugType>
53
    <PlatformTarget>AnyCPU</PlatformTarget>
54
    <ErrorReport>prompt</ErrorReport>
55
  </PropertyGroup>
56
  <ItemGroup>
57
    <Reference Include="System">
58
    </Reference>
59
    <Reference Include="System.Data" />
60
    <Reference Include="System.Xml" />
61
  </ItemGroup>
62
  <ItemGroup>
63
    <Compile Include="arrays\CircularQueue.cs" />
64
    <Compile Include="arrays\HashedArrayList.cs" />
65
    <Compile Include="AssemblyInfo.cs">
66
      <SubType>Code</SubType>
67
    </Compile>
68
    <Compile Include="Attributes.cs" />
69
    <Compile Include="Builtin.cs" />
70
    <Compile Include="Comparer.cs">
71
      <SubType>Code</SubType>
72
    </Compile>
73
    <Compile Include="Delegates.cs" />
74
    <Compile Include="Enums.cs" />
75
    <Compile Include="Exceptions.cs" />
76
    <Compile Include="Formatting.cs" />
77
    <Compile Include="Hashers.cs" />
78
    <Compile Include="Events.cs" />
79
    <Compile Include="Collections.cs">
80
    </Compile>
81
    <Compile Include="Dictionaries.cs">
82
    </Compile>
83
    <Compile Include="Interfaces.cs">
84
    </Compile>
85
    <Compile Include="linkedlists\HashedLinkedList.cs" />
86
    <Compile Include="Random.cs" />
87
    <Compile Include="Records.cs" />
88
    <Compile Include="Sorting.cs" />
89
    <Compile Include="ViewSupport.cs" />
90
    <Compile Include="MappedEnumerators.cs" />
91
    <Compile Include="WrappedArray.cs" />
92
    <Compile Include="Wrappers.cs">
93
    </Compile>
94
    <Compile Include="arrays\ArrayList.cs">
95
    </Compile>
96
    <Compile Include="arrays\SortedArray.cs">
97
    </Compile>
98
    <Compile Include="hashing\HashBag.cs">
99
    </Compile>
100
    <Compile Include="hashing\HashDictionary.cs">
101
    </Compile>
102
    <Compile Include="hashing\HashTable.cs">
103
    </Compile>
104
    <Compile Include="heaps\IntervalHeap.cs">
105
    </Compile>
106
    <Compile Include="linkedlists\LinkedList.cs">
107
    </Compile>
108
    <Compile Include="trees\RedBlackTreeSet.cs">
109
    </Compile>
110
    <Compile Include="trees\RedBlackTreeBag.cs">
111
    </Compile>
112
    <Compile Include="trees\RedBlackTreeDictionary.cs">
113
    </Compile>
114
  </ItemGroup>
115
  <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
116
  <PropertyGroup>
117
    <PreBuildEvent>"$(SolutionDir)PreProcess\$(OutDir)PreProcess.exe"</PreBuildEvent>
118
    <PostBuildEvent>
119
    </PostBuildEvent>
120
  </PropertyGroup>
121
</Project>