Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/Main/Main.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.3 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>{524CBD70-6F99-46AF-AD00-A0BC9FD1175B}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>Main</RootNamespace>
11    <AssemblyName>Main</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <PlatformTarget>AnyCPU</PlatformTarget>
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25    <Prefer32Bit>false</Prefer32Bit>
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    <Prefer32Bit>false</Prefer32Bit>
36  </PropertyGroup>
37  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
38    <DebugSymbols>true</DebugSymbols>
39    <OutputPath>bin\x64\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <DebugType>full</DebugType>
42    <PlatformTarget>x64</PlatformTarget>
43    <ErrorReport>prompt</ErrorReport>
44    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
45  </PropertyGroup>
46  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
47    <OutputPath>bin\x64\Release\</OutputPath>
48    <DefineConstants>TRACE</DefineConstants>
49    <Optimize>true</Optimize>
50    <DebugType>pdbonly</DebugType>
51    <PlatformTarget>x64</PlatformTarget>
52    <ErrorReport>prompt</ErrorReport>
53    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
54  </PropertyGroup>
55  <ItemGroup>
56    <Reference Include="System" />
57    <Reference Include="System.Core" />
58  </ItemGroup>
59  <ItemGroup>
60    <Compile Include="Program.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs" />
62  </ItemGroup>
63  <ItemGroup>
64    <ProjectReference Include="..\HeuristicLab.Algorithms.Bandits\HeuristicLab.Algorithms.Bandits.csproj">
65      <Project>{24408F7D-EE0F-4886-A08B-EC324D662E47}</Project>
66      <Name>HeuristicLab.Algorithms.Bandits</Name>
67    </ProjectReference>
68    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
69      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
70      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
71    </ProjectReference>
72    <ProjectReference Include="..\HeuristicLab.Algorithms.MonteCarloTreeSearch\HeuristicLab.Algorithms.MonteCarloTreeSearch.csproj">
73      <Project>{2c115235-8fa9-4f7f-b3a0-a0144f8a35ca}</Project>
74      <Name>HeuristicLab.Algorithms.MonteCarloTreeSearch</Name>
75    </ProjectReference>
76    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
77      <Project>{cb9dccf6-667e-4a13-b82d-dbd6b45a045e}</Project>
78      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
79    </ProjectReference>
80  </ItemGroup>
81  <ItemGroup>
82    <None Include="app.config" />
83  </ItemGroup>
84  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
85  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86       Other similar extension points exist, see Microsoft.Common.targets.
87  <Target Name="BeforeBuild">
88  </Target>
89  <Target Name="AfterBuild">
90  </Target>
91  -->
92</Project>
Note: See TracBrowser for help on using the repository browser.