Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.MonteCarloTreeSearch/HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj @ 12762

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

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 3.9 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  </PropertyGroup>
32  <ItemGroup>
33    <Reference Include="System" />
34    <Reference Include="System.Core" />
35    <Reference Include="System.Drawing" />
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="Base\TreeInfos.cs" />
44    <Compile Include="Simulation\ISimulation.cs" />
45    <Compile Include="MonteCarloTreeSearch.cs" />
46    <Compile Include="Properties\AssemblyInfo.cs" />
47    <Compile Include="Base\TreeNode.cs" />
48    <Compile Include="Simulation\RandomSimulation.cs" />
49  </ItemGroup>
50  <ItemGroup>
51    <ProjectReference Include="..\GraphVizWrapper\GraphVizWrapper.csproj">
52      <Project>{cfec60dc-14e0-47e4-a60e-8919fb5fef5d}</Project>
53      <Name>GraphVizWrapper</Name>
54    </ProjectReference>
55    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
56      <Project>{24408f7d-ee0f-4886-a08b-ec324d662e47}</Project>
57      <Name>HeuristicLab.Algorithms.Bandits</Name>
58    </ProjectReference>
59    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
60      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
61      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
62    </ProjectReference>
63    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
64      <Project>{3a2fbbcb-f9df-4970-87f3-f13337d941ad}</Project>
65      <Name>HeuristicLab.Common</Name>
66    </ProjectReference>
67    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
68      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
69      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
70    </ProjectReference>
71  </ItemGroup>
72  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
73  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
74       Other similar extension points exist, see Microsoft.Common.targets.
75  <Target Name="BeforeBuild">
76  </Target>
77  <Target Name="AfterBuild">
78  </Target>
79  -->
80</Project>
Note: See TracBrowser for help on using the repository browser.