Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/Evaluation.csproj @ 12781

Last change on this file since 12781 was 12781, checked in by aballeit, 9 years ago

#2283 stable GUI; ThreadPool for runs; improved TreeAnalysis

File size: 7.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{D043325A-097F-4512-A8FC-CF706577FA46}</ProjectGuid>
8    <OutputType>WinExe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>Evaluation</RootNamespace>
11    <AssemblyName>Evaluation</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15    <WarningLevel>4</WarningLevel>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <PlatformTarget>AnyCPU</PlatformTarget>
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <PlatformTarget>AnyCPU</PlatformTarget>
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Data" />
39    <Reference Include="System.Xml" />
40    <Reference Include="Microsoft.CSharp" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Xml.Linq" />
43    <Reference Include="System.Data.DataSetExtensions" />
44    <Reference Include="System.Xaml">
45      <RequiredTargetFramework>4.0</RequiredTargetFramework>
46    </Reference>
47    <Reference Include="WindowsBase" />
48    <Reference Include="PresentationCore" />
49    <Reference Include="PresentationFramework" />
50  </ItemGroup>
51  <ItemGroup>
52    <ApplicationDefinition Include="App.xaml">
53      <Generator>MSBuild:Compile</Generator>
54      <SubType>Designer</SubType>
55    </ApplicationDefinition>
56    <Compile Include="FoundSolution.cs" />
57    <Compile Include="Run.cs" />
58    <Compile Include="ViewModel\EvaluationViewModel.cs" />
59    <Page Include="MainWindow.xaml">
60      <Generator>MSBuild:Compile</Generator>
61      <SubType>Designer</SubType>
62    </Page>
63    <Compile Include="App.xaml.cs">
64      <DependentUpon>App.xaml</DependentUpon>
65      <SubType>Code</SubType>
66    </Compile>
67    <Compile Include="MainWindow.xaml.cs">
68      <DependentUpon>MainWindow.xaml</DependentUpon>
69      <SubType>Code</SubType>
70    </Compile>
71  </ItemGroup>
72  <ItemGroup>
73    <Compile Include="Properties\AssemblyInfo.cs">
74      <SubType>Code</SubType>
75    </Compile>
76    <Compile Include="Properties\Resources.Designer.cs">
77      <AutoGen>True</AutoGen>
78      <DesignTime>True</DesignTime>
79      <DependentUpon>Resources.resx</DependentUpon>
80    </Compile>
81    <Compile Include="Properties\Settings.Designer.cs">
82      <AutoGen>True</AutoGen>
83      <DependentUpon>Settings.settings</DependentUpon>
84      <DesignTimeSharedInput>True</DesignTimeSharedInput>
85    </Compile>
86    <EmbeddedResource Include="Properties\Resources.resx">
87      <Generator>ResXFileCodeGenerator</Generator>
88      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
89    </EmbeddedResource>
90    <None Include="Properties\Settings.settings">
91      <Generator>SettingsSingleFileGenerator</Generator>
92      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
93    </None>
94    <AppDesigner Include="Properties\" />
95  </ItemGroup>
96  <ItemGroup>
97    <None Include="App.config" />
98  </ItemGroup>
99  <ItemGroup>
100    <ProjectReference Include="..\DynamicDataDisplay\DynamicDataDisplay.csproj">
101      <Project>{ecd37682-df7e-409f-912d-0965634556b5}</Project>
102      <Name>DynamicDataDisplay</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
105      <Project>{24408f7d-ee0f-4886-a08b-ec324d662e47}</Project>
106      <Name>HeuristicLab.Algorithms.Bandits</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.Algorithms.GeneticProgramming\HeuristicLab.Algorithms.GeneticProgramming.csproj">
109      <Project>{14bec23f-63fd-4954-b8ae-e2f4962e9b57}</Project>
110      <Name>HeuristicLab.Algorithms.GeneticProgramming</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
113      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
114      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.Algorithms.MonteCarloTreeSearch\HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj">
117      <Project>{2c115235-8fa9-4f7f-b3a0-a0144f8a35ca}</Project>
118      <Name>HeuristicLab.Algorithms.MonteCarloTreeSearch</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
121      <Project>{3a2fbbcb-f9df-4970-87f3-f13337d941ad}</Project>
122      <Name>HeuristicLab.Common</Name>
123    </ProjectReference>
124    <ProjectReference Include="..\HeuristicLab.Distributions\HeuristicLab.Distributions.csproj">
125      <Project>{31171165-e16f-4a1a-a8ab-25c6ab3a71b9}</Project>
126      <Name>HeuristicLab.Distributions</Name>
127    </ProjectReference>
128    <ProjectReference Include="..\HeuristicLab.Problems.Bandits\HeuristicLab.Problems.Bandits.csproj">
129      <Project>{e8138227-0c64-4e85-b676-21d3b97f254f}</Project>
130      <Name>HeuristicLab.Problems.Bandits</Name>
131    </ProjectReference>
132    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization.SymbReg\HeuristicLab.Problems.GrammaticalOptimization.SymbReg.csproj">
133      <Project>{17a7a380-86ce-482d-8d22-cbd70cc97f0d}</Project>
134      <Name>HeuristicLab.Problems.GrammaticalOptimization.SymbReg</Name>
135    </ProjectReference>
136    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
137      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
138      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
139    </ProjectReference>
140    <ProjectReference Include="..\WpfTestSvgSample\WpfTestSvgSample.csproj">
141      <Project>{514a1e9d-0900-46a5-8073-f3c9cb2aaee3}</Project>
142      <Name>WpfTestSvgSample</Name>
143    </ProjectReference>
144  </ItemGroup>
145  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
146  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
147       Other similar extension points exist, see Microsoft.Common.targets.
148  <Target Name="BeforeBuild">
149  </Target>
150  <Target Name="AfterBuild">
151  </Target>
152  -->
153</Project>
Note: See TracBrowser for help on using the repository browser.