-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvGraphs.csproj
71 lines (71 loc) · 2.99 KB
/
EvGraphs.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\NUnit.3.10.1\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{6E6A548E-12AF-4F6C-88F1-1912FBA643E8}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>EvImps</RootNamespace>
<AssemblyName>EvImps</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<Description>Implementation of graphs with the following algorithms:
Prim
Dijkstra
Bellman-Ford
Edmond-Karp
Dinitz</Description>
</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>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Numerics" />
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="monodoc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Graphs\Graph.cs" />
<Compile Include="Graphs\FlowNetwork.cs" />
<Compile Include="SortedStructures\Heap.cs" />
<Compile Include="Graphs\Verticle.cs" />
<Compile Include="Graphs\Edge.cs" />
<Compile Include="Graphs\UnitTest\VerticleTest.cs" />
<Compile Include="Graphs\UnitTest\EdgeTest.cs" />
<Compile Include="Graphs\UnitTest\GraphTest.cs" />
<Compile Include="Graphs\UnitTest\FlowNetworkTest.cs" />
<Compile Include="SortedStructures\UnitTest\HeapTest.cs" />
<Compile Include="MainClass.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Graphs\" />
<Folder Include="SortedStructures\" />
<Folder Include="Graphs\UnitTest\" />
<Folder Include="SortedStructures\UnitTest\" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>