forked from aalhour/C-Sharp-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainProgram.csproj
115 lines (115 loc) · 6.02 KB
/
MainProgram.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
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7DD9570B-B0B6-414C-A5E5-ACB622A294B6}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>C_Sharp_Algorithms</RootNamespace>
<AssemblyName>C-Sharp-Algorithms</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AlgorithmsTests\BinarySearchTreeSorterTest.cs" />
<Compile Include="AlgorithmsTests\CatalanNumbersTest.cs" />
<Compile Include="AlgorithmsTests\CountingSortTest.cs" />
<Compile Include="AlgorithmsTests\GraphsBellmanFordShortestPaths.cs" />
<Compile Include="AlgorithmsTests\GraphsCyclesDetectorTests.cs" />
<Compile Include="AlgorithmsTests\GraphsDijkstraShortestPathsTest.cs" />
<Compile Include="AlgorithmsTests\GraphsTopologicalSorterTest.cs" />
<Compile Include="AlgorithmsTests\GreatestCommonDivisorTest.cs" />
<Compile Include="AlgorithmsTests\HeapSorterTest.cs" />
<Compile Include="AlgorithmsTests\LSDRadixSorterTest.cs" />
<Compile Include="AlgorithmsTests\StringEditDistanceTest.cs" />
<Compile Include="AlgorithmsTests\StringPermutationTests.cs" />
<Compile Include="DataStructuresTests\AVLTreeTest.cs" />
<Compile Include="DataStructuresTests\BinomialHeapsTest.cs" />
<Compile Include="DataStructuresTests\CuckooHashTableTest.cs" />
<Compile Include="DataStructuresTests\Graphs_DirectedSparseGraphTest.cs" />
<Compile Include="DataStructuresTests\Graphs_DirectedWeightedSparseGraphTest.cs" />
<Compile Include="DataStructuresTests\Graphs_UndirectedWeightedDenseGraphTest.cs" />
<Compile Include="DataStructuresTests\Graphs_UndirectedWeightedSparseGraphTest.cs" />
<Compile Include="DataStructuresTests\HashTableSeparateChainingTest.cs" />
<Compile Include="DataStructuresTests\RedBlackTreeTest.cs" />
<Compile Include="DataStructuresTests\SkipListTest.cs" />
<Compile Include="DataStructuresTests\TrieMapTest.cs" />
<Compile Include="DataStructuresTests\TrieTest.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AlgorithmsTests\InsertionSortTest.cs" />
<Compile Include="AlgorithmsTests\QuickSortTest.cs" />
<Compile Include="DataStructuresTests\QueueTest.cs" />
<Compile Include="DataStructuresTests\StackTest.cs" />
<Compile Include="DataStructuresTests\DLinkedListTest.cs" />
<Compile Include="DataStructuresTests\SLinkedListTest.cs" />
<Compile Include="DataStructuresTests\ArrayListTest.cs" />
<Compile Include="AlgorithmsTests\MergeSorterTest.cs" />
<Compile Include="DataStructuresTests\BinaryHeapsTest.cs" />
<Compile Include="DataStructuresTests\PriorityQueuesTest.cs" />
<Compile Include="DataStructuresTests\BinarySearchTreeTest.cs" />
<Compile Include="DataStructuresTests\Graphs_UndirectedSparseGraphTest.cs" />
<Compile Include="DataStructuresTests\Graphs_UndirectedDenseGraphTest.cs" />
<Compile Include="AlgorithmsTests\GraphsDepthFirstSearchTest.cs" />
<Compile Include="AlgorithmsTests\GraphsBreadthFirstSearchTest.cs" />
<Compile Include="AlgorithmsTests\GraphsBreadthFirstPathsTest.cs" />
<Compile Include="DataStructuresTests\Graphs_DirectedDenseGraphTest.cs" />
<Compile Include="DataStructuresTests\Graphs_DirectedWeightedDenseGraphTest.cs" />
<Compile Include="DataStructuresTests\CliqueGraphTest.cs" />
<Compile Include="AlgorithmsTests\GraphsConnectedComponents.cs" />
<Compile Include="AlgorithmsTests\GraphsBipartiteColoringTest.cs" />
<Compile Include="AlgorithmsTests\BinaryTreeRecursiveWalkerTests.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Algorithms\Algorithms.csproj">
<Project>{8F59D573-A1B8-438F-A67A-A7F11FACF201}</Project>
<Name>Algorithms</Name>
</ProjectReference>
<ProjectReference Include="..\DataStructures\DataStructures.csproj">
<Project>{464251A0-3667-42BA-A3D5-0581D65C442B}</Project>
<Name>DataStructures</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup />
</Project>