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

Last change on this file since 4302 was 4302, checked in by cneumuel, 14 years ago
  • made ServerConsole work with wsHttpBinding
  • applied role-base restrictions to all WCF-Services
  • made wcf-services work with certificates
  • renamed ExecutionEngineFacade to ClientFacade

(#1168)

File size: 4.6 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>C:\Program Files\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="HeuristicLab.Hive-3.3.dll.config">
70      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
71    </None>
72    <None Include="CopyAssemblies.cmd" />
73    <None Include="CustomPostBuild.cmd" />
74    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
75    <None Include="HeuristicLab 3.3.exe.config">
76      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
77      <SubType>Designer</SubType>
78    </None>
79    <None Include="HeuristicLab.snk" />
80    <None Include="MergeConfigs.cmd" />
81    <None Include="Properties\AssemblyInfo.frame" />
82  </ItemGroup>
83  <ItemGroup>
84    <Content Include="Files.txt" />
85    <Content Include="Files.x64.txt" />
86    <Content Include="Files.x86.txt" />
87    <Content Include="HeuristicLab.ico" />
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90  <PropertyGroup>
91    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
92set ProjectDir=$(ProjectDir)
93set SolutionDir=$(SolutionDir)
94set Outdir=$(Outdir)
95set Configuration=$(ConfigurationName)
96
97call PreBuildEvent.cmd</PreBuildEvent>
98  </PropertyGroup>
99  <PropertyGroup>
100    <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
101set ProjectDir=$(ProjectDir)
102set SolutionDir=$(SolutionDir)
103set Outdir=$(Outdir)
104set Platform=$(PlatformName)
105set Configuration=$(ConfigurationName)
106
107call MergeConfigs.cmd
108call CopyAssemblies.cmd
109if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
110  </PropertyGroup>
111  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
112       Other similar extension points exist, see Microsoft.Common.targets.
113  <Target Name="BeforeBuild">
114  </Target>
115  <Target Name="AfterBuild">
116  </Target>
117  -->
118</Project>
Note: See TracBrowser for help on using the repository browser.