Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/CodeGenerator/CodeGenerator.csproj

Last change on this file was 10400, checked in by gkronber, 10 years ago

#2026 worked on MCTS solver

File size: 2.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.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>{5561A84D-887A-48D8-8E82-CE8B44AD135F}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>CodeGenerator</RootNamespace>
11    <AssemblyName>CodeGenerator</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core" />
36  </ItemGroup>
37  <ItemGroup>
38    <Compile Include="BruteForceCodeGen.cs" />
39    <Compile Include="MonteCarloTreeSearchCodeGen.cs" />
40    <Compile Include="ProblemCodeGen.cs" />
41    <Compile Include="SourceBuilder.cs" />
42    <Compile Include="Properties\AssemblyInfo.cs" />
43    <Compile Include="RandomSearchCodeGen.cs" />
44  </ItemGroup>
45  <ItemGroup>
46    <ProjectReference Include="..\HeuristicLab.Grammars\3.3\HeuristicLab.Grammars-3.3.csproj">
47      <Project>{A5452B63-B33B-4F9F-9E81-98B75EDB5612}</Project>
48      <Name>HeuristicLab.Grammars-3.3</Name>
49    </ProjectReference>
50    <ProjectReference Include="..\HeuristicLab.Problems.GPDL\3.4\HeuristicLab.Problems.GPDL-3.4.csproj">
51      <Project>{E4EE5AFB-D552-447B-8A16-6CBE7938AF32}</Project>
52      <Name>HeuristicLab.Problems.GPDL-3.4</Name>
53    </ProjectReference>
54  </ItemGroup>
55  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
56  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
57       Other similar extension points exist, see Microsoft.Common.targets.
58  <Target Name="BeforeBuild">
59  </Target>
60  <Target Name="AfterBuild">
61  </Target>
62  -->
63</Project>
Note: See TracBrowser for help on using the repository browser.