Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2283 x64 build of projects

File size: 4.8 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  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
33    <DebugSymbols>true</DebugSymbols>
34    <OutputPath>bin\x64\Debug\</OutputPath>
35    <DefineConstants>DEBUG;TRACE</DefineConstants>
36    <DebugType>full</DebugType>
37    <PlatformTarget>x64</PlatformTarget>
38    <ErrorReport>prompt</ErrorReport>
39    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40  </PropertyGroup>
41  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
42    <OutputPath>bin\x64\Release\</OutputPath>
43    <DefineConstants>TRACE</DefineConstants>
44    <Optimize>true</Optimize>
45    <DebugType>pdbonly</DebugType>
46    <PlatformTarget>x64</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
49  </PropertyGroup>
50  <ItemGroup>
51    <Reference Include="System" />
52    <Reference Include="System.Core" />
53    <Reference Include="System.Drawing" />
54    <Reference Include="System.Xml.Linq" />
55    <Reference Include="System.Data.DataSetExtensions" />
56    <Reference Include="Microsoft.CSharp" />
57    <Reference Include="System.Data" />
58    <Reference Include="System.Xml" />
59  </ItemGroup>
60  <ItemGroup>
61    <Compile Include="Base\TreeInfos.cs" />
62    <Compile Include="MonteCarloTreeSearch.cs" />
63    <Compile Include="Simulation\ISimulation.cs" />
64    <Compile Include="MonteCarloTreeSearch_PruneLeaves.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66    <Compile Include="Base\TreeNode.cs" />
67    <Compile Include="Simulation\RandomSimulation.cs" />
68  </ItemGroup>
69  <ItemGroup>
70    <ProjectReference Include="..\GraphVizWrapper\GraphVizWrapper.csproj">
71      <Project>{cfec60dc-14e0-47e4-a60e-8919fb5fef5d}</Project>
72      <Name>GraphVizWrapper</Name>
73    </ProjectReference>
74    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
75      <Project>{24408f7d-ee0f-4886-a08b-ec324d662e47}</Project>
76      <Name>HeuristicLab.Algorithms.Bandits</Name>
77    </ProjectReference>
78    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
79      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
80      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
81    </ProjectReference>
82    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
83      <Project>{3a2fbbcb-f9df-4970-87f3-f13337d941ad}</Project>
84      <Name>HeuristicLab.Common</Name>
85    </ProjectReference>
86    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
87      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
88      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.