-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlEco.csproj
111 lines (111 loc) · 4.89 KB
/
mlEco.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
<?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>
<ProjectGuid>{2C7040D4-2CF7-4F91-8409-0657391618FE}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>mlEco</RootNamespace>
<AssemblyName>mlEco</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{2C7040D4-2CF7-4F91-8409-0657391618FE}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>mlEco</RootNamespace>
<AssemblyName>mlEco</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="gtk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>gtk-sharp-2.0</Package>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="gdk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>gtk-sharp-2.0</Package>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="glib-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>glib-sharp-2.0</Package>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="pango-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>gtk-sharp-2.0</Package>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="atk-sharp, Version=2.4.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>gtk-sharp-2.0</Package>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="Mono.Posix" />
<Reference Include="Mono.Cairo" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
<Reference Include="nunit.framework">
<Package>nunit</Package>
</Reference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="gtk-gui\gui.stetic">
<LogicalName>gui.stetic</LogicalName>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Include="gtk-gui\generated.cs" />
<Compile Include="gtk-gui\MainWindow.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Program.cs" />
<Compile Include="Simulation\Creature.cs" />
<Compile Include="Simulation\Food.cs" />
<Compile Include="Simulation\SimulationObject.cs" />
<Compile Include="App\Input.cs" />
<Compile Include="App\MlEcoApp.cs" />
<Compile Include="Library\Library.cs" />
<Compile Include="Library\Literals.cs" />
<Compile Include="Library\QuadTree.cs" />
<Compile Include="Library\QuadTreeNode.cs" />
<Compile Include="App\Gui.cs" />
<Compile Include="Simulation\Simulation.cs" />
<Compile Include="MainWindow.cs" />
<Compile Include="App\DrawManager.cs" />
<Compile Include="App\SimulationControl.cs" />
<Compile Include="App\DrawObjects.cs" />
<Compile Include="Library\mlZoo\mlZoo.cs" />
<Compile Include="Library\mlZoo\FCAgent.cs" />
<Compile Include="Simulation\NEATSimulation.cs" />
<Compile Include="Simulation\FCSimulation.cs" />
<Compile Include="Library\mlZoo\TopographyViewerApp.cs" />
<Compile Include="Library\mlZoo\Neat\NeatAgent.cs" />
<Compile Include="Library\mlZoo\Neat\ConnectionGene.cs" />
<Compile Include="Library\mlZoo\Neat\NodeGene.cs" />
<Compile Include="Library\mlZoo\Neat\NeatReproduction.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Simulation\" />
<Folder Include="App\" />
<Folder Include="Library\" />
<Folder Include="Library\mlZoo\" />
<Folder Include="Library\mlZoo\Neat\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>