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 @ 4136

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

finally fixed logging for hive (#1092)

File size: 4.5 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  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
45    <PlatformTarget>x86</PlatformTarget>
46    <OutputPath>bin\Debug\</OutputPath>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
49    <PlatformTarget>x86</PlatformTarget>
50    <OutputPath>bin\x86\Release\</OutputPath>
51  </PropertyGroup>
52  <ItemGroup>
53    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
54      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
55    </Reference>
56    <Reference Include="System" />
57    <Reference Include="System.Core" />
58    <Reference Include="System.Xml.Linq" />
59    <Reference Include="System.Data.DataSetExtensions" />
60    <Reference Include="System.Data" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="Program.cs" />
65    <Compile Include="Properties\AssemblyInfo.cs" />
66  </ItemGroup>
67  <ItemGroup />
68  <ItemGroup>
69    <None Include="app.config" />
70    <None Include="CopyAssemblies.cmd" />
71    <None Include="CustomPostBuild.cmd" />
72    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
73    <None Include="HeuristicLab 3.3.exe.config">
74      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
75    </None>
76    <None Include="HeuristicLab.snk" />
77    <None Include="MergeConfigs.cmd" />
78    <None Include="Properties\AssemblyInfo.frame" />
79  </ItemGroup>
80  <ItemGroup>
81    <Content Include="Files.txt" />
82    <Content Include="Files.x64.txt" />
83    <Content Include="Files.x86.txt" />
84    <Content Include="HeuristicLab.ico" />
85  </ItemGroup>
86  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87  <PropertyGroup>
88    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89set ProjectDir=$(ProjectDir)
90set SolutionDir=$(SolutionDir)
91set Outdir=$(Outdir)
92set Configuration=$(ConfigurationName)
93
94call PreBuildEvent.cmd</PreBuildEvent>
95  </PropertyGroup>
96  <PropertyGroup>
97    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
98set ProjectDir=$(ProjectDir)
99set SolutionDir=$(SolutionDir)
100set Outdir=$(Outdir)
101set Platform=$(PlatformName)
102set Configuration=$(ConfigurationName)
103
104call MergeConfigs.cmd
105call CopyAssemblies.cmd
106if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
107  </PropertyGroup>
108  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109       Other similar extension points exist, see Microsoft.Common.targets.
110  <Target Name="BeforeBuild">
111  </Target>
112  <Target Name="AfterBuild">
113  </Target>
114  -->
115</Project>
Note: See TracBrowser for help on using the repository browser.