Free cookie consent management tool by TermsFeed Policy Generator

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

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

copied HeuristicLab.Security projects to 3.3-HiveMigration branch (#1091)

File size: 3.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  <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</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  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <RunPostBuildEvent>Always</RunPostBuildEvent>
36  </PropertyGroup>
37  <PropertyGroup>
38    <SignAssembly>true</SignAssembly>
39  </PropertyGroup>
40  <PropertyGroup>
41    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
42  </PropertyGroup>
43  <ItemGroup>
44    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
45      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
46    </Reference>
47    <Reference Include="System" />
48    <Reference Include="System.Core" />
49    <Reference Include="System.Xml.Linq" />
50    <Reference Include="System.Data.DataSetExtensions" />
51    <Reference Include="System.Data" />
52    <Reference Include="System.Xml" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="Program.cs" />
56    <Compile Include="Properties\AssemblyInfo.cs" />
57  </ItemGroup>
58  <ItemGroup />
59  <ItemGroup>
60    <None Include="CopyAssemblies.cmd" />
61    <None Include="CustomPostBuild.cmd" />
62    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
63    <None Include="HeuristicLab 3.3.exe.config" />
64    <None Include="HeuristicLab.snk" />
65    <None Include="MergeConfigs.cmd" />
66  </ItemGroup>
67  <ItemGroup>
68    <Content Include="Files.txt" />
69    <Content Include="Files.x64.txt" />
70    <Content Include="Files.x86.txt" />
71    <Content Include="HeuristicLab.ico" />
72  </ItemGroup>
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <PropertyGroup>
75    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
76set ProjectDir=$(ProjectDir)
77set SolutionDir=$(SolutionDir)
78set Outdir=$(Outdir)
79set Configuration=$(ConfigurationName)
80
81call PreBuildEvent.cmd</PreBuildEvent>
82  </PropertyGroup>
83  <PropertyGroup>
84    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
85set ProjectDir=$(ProjectDir)
86set SolutionDir=$(SolutionDir)
87set Outdir=$(Outdir)
88set Platform=$(PlatformName)
89set Configuration=$(ConfigurationName)
90
91call MergeConfigs.cmd
92call CopyAssemblies.cmd
93if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
94  </PropertyGroup>
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102</Project>
Note: See TracBrowser for help on using the repository browser.