forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlgorithms.csproj
86 lines (86 loc) · 3.72 KB
/
Algorithms.csproj
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
<?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>{8F59D573-A1B8-438F-A67A-A7F11FACF201}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Algorithms</RootNamespace>
<AssemblyName>Algorithms</AssemblyName>
<TargetFrameworkVersion>v4.5</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>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Graphs\BellmanFordShortestPaths.cs" />
<Compile Include="Graphs\CyclesDetector.cs" />
<Compile Include="Graphs\DijkstraAllPairsShortestPaths.cs" />
<Compile Include="Graphs\DijkstraShortestPaths.cs" />
<Compile Include="Numeric\BinomialCoefficients.cs" />
<Compile Include="Numeric\CatalanNumbers.cs" />
<Compile Include="Numeric\GreatestCommonDivisor.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Sorting\BinarySearchTreeSorter.cs" />
<Compile Include="Sorting\BubbleSorter.cs" />
<Compile Include="Sorting\BucketSorter.cs" />
<Compile Include="Sorting\CombSorter.cs" />
<Compile Include="Sorting\CountingSorter.cs" />
<Compile Include="Sorting\CycleSorter.cs" />
<Compile Include="Sorting\GnomeSorter.cs" />
<Compile Include="Sorting\HeapSorter.cs" />
<Compile Include="Sorting\InsertionSorter.cs" />
<Compile Include="Sorting\LSDRadixSorter.cs" />
<Compile Include="Sorting\OddEvenSorter.cs" />
<Compile Include="Sorting\PigeonHoleSorter.cs" />
<Compile Include="Sorting\QuickSorter.cs" />
<Compile Include="Sorting\MergeSorter.cs" />
<Compile Include="Common\Comparers.cs" />
<Compile Include="Common\Helpers.cs" />
<Compile Include="Graphs\BreadthFirstShortestPaths.cs" />
<Compile Include="Graphs\BreadthFirstSearcher.cs" />
<Compile Include="Graphs\DepthFirstSearcher.cs" />
<Compile Include="Graphs\TopologicalSorter.cs" />
<Compile Include="Sorting\SelectionSorter.cs" />
<Compile Include="Sorting\ShellSorter.cs" />
<Compile Include="Strings\EditDistance.cs" />
<Compile Include="Strings\EditDistanceCostsMap.cs" />
<Compile Include="Strings\Permutations.cs" />
<Compile Include="Graphs\ConnectedComponents.cs" />
<Compile Include="Graphs\BipartiteColoring.cs" />
<Compile Include="Trees\BinaryTreeRecursiveWalker.cs" />
<Compile Include="Trees\BinaryTreeIterativeWalker.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<ProjectReference Include="..\DataStructures\DataStructures.csproj">
<Project>{464251A0-3667-42BA-A3D5-0581D65C442B}</Project>
<Name>DataStructures</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<ItemGroup />
<ItemGroup />
<ItemGroup />
<ItemGroup>
<Folder Include="Trees\" />
</ItemGroup>
</Project>