Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization-gkr/HeuristicLab.Algorithms.MonteCarloTreeSearch/HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj @ 13994

Last change on this file since 13994 was 12893, checked in by gkronber, 9 years ago

#2283: experiments on grammatical optimization algorithms (maxreward instead of avg reward, ...)

File size: 3.7 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>{2C115235-8FA9-4F7F-B3A0-A0144F8A35CA}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.MonteCarloTreeSearch</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.MonteCarloTreeSearch</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>bin\Debug\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <DebugType>pdbonly</DebugType>
26    <Optimize>true</Optimize>
27    <OutputPath>bin\Release\</OutputPath>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31    <UseVSHostingProcess>true</UseVSHostingProcess>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core" />
36    <Reference Include="System.Xml.Linq" />
37    <Reference Include="System.Data.DataSetExtensions" />
38    <Reference Include="Microsoft.CSharp" />
39    <Reference Include="System.Data" />
40    <Reference Include="System.Xml" />
41  </ItemGroup>
42  <ItemGroup>
43    <Compile Include="Simulation\ISimulation.cs" />
44    <Compile Include="MonteCarloTreeSearch.cs" />
45    <Compile Include="Properties\AssemblyInfo.cs" />
46    <Compile Include="Base\TreeNode.cs" />
47    <Compile Include="Simulation\RandomSimulation.cs" />
48  </ItemGroup>
49  <ItemGroup>
50    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
51      <Project>{24408f7d-ee0f-4886-a08b-ec324d662e47}</Project>
52      <Name>HeuristicLab.Algorithms.Bandits</Name>
53    </ProjectReference>
54    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
55      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
56      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
57    </ProjectReference>
58    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
59      <Project>{3a2fbbcb-f9df-4970-87f3-f13337d941ad}</Project>
60      <Name>HeuristicLab.Common</Name>
61    </ProjectReference>
62    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
63      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
64      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
65    </ProjectReference>
66  </ItemGroup>
67  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
68  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
69       Other similar extension points exist, see Microsoft.Common.targets.
70  <Target Name="BeforeBuild">
71  </Target>
72  <Target Name="AfterBuild">
73  </Target>
74  -->
75</Project>
Note: See TracBrowser for help on using the repository browser.