Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive/3.3/HeuristicLab.Hive-3.3.csproj @ 4119

Last change on this file since 4119 was 4119, checked in by cneumuel, 14 years ago

HiveExperiment is now able to send IOptimizers of an Experiment and receive the calculated result (#1115)

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  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{C92AAC8C-4D88-449C-ABA5-2B935D769842}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
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    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <PropertyGroup>
36    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
37  </PropertyGroup>
38  <PropertyGroup>
39    <SignAssembly>true</SignAssembly>
40  </PropertyGroup>
41  <PropertyGroup>
42    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
43  </PropertyGroup>
44  <ItemGroup>
45    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
46      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
47    </Reference>
48    <Reference Include="System" />
49    <Reference Include="System.Core" />
50    <Reference Include="System.Xml.Linq" />
51    <Reference Include="System.Data.DataSetExtensions" />
52    <Reference Include="System.Data" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="Program.cs" />
57    <Compile Include="Properties\AssemblyInfo.cs" />
58  </ItemGroup>
59  <ItemGroup />
60  <ItemGroup>
61    <None Include="app.config" />
62    <None Include="CopyAssemblies.cmd" />
63    <None Include="CustomPostBuild.cmd" />
64    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
65    <None Include="HeuristicLab 3.3.exe.config">
66      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
67    </None>
68    <None Include="HeuristicLab.snk" />
69    <None Include="MergeConfigs.cmd" />
70    <None Include="Properties\AssemblyInfo.frame" />
71  </ItemGroup>
72  <ItemGroup>
73    <Content Include="Files.txt" />
74    <Content Include="Files.x64.txt" />
75    <Content Include="Files.x86.txt" />
76    <Content Include="HeuristicLab.Hive.log4net.xml">
77      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
78    </Content>
79    <Content Include="HeuristicLab.ico" />
80  </ItemGroup>
81  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
82  <PropertyGroup>
83    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
84set ProjectDir=$(ProjectDir)
85set SolutionDir=$(SolutionDir)
86set Outdir=$(Outdir)
87set Configuration=$(ConfigurationName)
88
89call PreBuildEvent.cmd</PreBuildEvent>
90  </PropertyGroup>
91  <PropertyGroup>
92    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
93set ProjectDir=$(ProjectDir)
94set SolutionDir=$(SolutionDir)
95set Outdir=$(Outdir)
96set Platform=$(PlatformName)
97set Configuration=$(ConfigurationName)
98
99call MergeConfigs.cmd
100call CopyAssemblies.cmd
101if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
102  </PropertyGroup>
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110</Project>
Note: See TracBrowser for help on using the repository browser.