-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithms.csproj
More file actions
58 lines (58 loc) · 2.27 KB
/
Algorithms.csproj
File metadata and controls
58 lines (58 loc) · 2.27 KB
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
<?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)' == '' ">x86</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E82C3E43-C1BE-49D2-B167-129C1E7825A8}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Algorithms</RootNamespace>
<AssemblyName>Algorithms</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Sorting\HeapSort.cs" />
<Compile Include="Sorting\MergeSort.cs" />
<Compile Include="Sorting\QuickSort.cs" />
<Compile Include="Trees\Node.cs" />
<Compile Include="Trees\AATree.cs" />
<Compile Include="Trees\BSTRee.cs" />
<Compile Include="HashTable\HTable.cs" />
<Compile Include="TOPCODER\BinaryCode.cs" />
<Compile Include="TOPCODER\Lottery.cs" />
<Compile Include="TOPCODER\Bonuses.cs" />
<Compile Include="TOPCODER\ImageDithering.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Sorting\" />
<Folder Include="Trees\" />
<Folder Include="HashTable\" />
<Folder Include="TOPCODER\" />
</ItemGroup>
</Project>