Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/HeuristicLab.Hive.Server.Core-3.3.csproj @ 4077

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

moved JobBase to 3.3-HiveMigration and changed versions in hive-projects (#1091)

File size: 8.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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{898B31CF-81DC-453B-AEB3-BDF83197A7EE}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Hive.Server.Core</RootNamespace>
12    <AssemblyName>HeuristicLab.Hive.Server.Core-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <FileUpgradeFlags>
18    </FileUpgradeFlags>
19    <OldToolsVersion>3.5</OldToolsVersion>
20    <UpgradeBackupLocation />
21  </PropertyGroup>
22  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
23    <DebugSymbols>true</DebugSymbols>
24    <DebugType>full</DebugType>
25    <Optimize>false</Optimize>
26    <OutputPath>bin\Debug\</OutputPath>
27    <DefineConstants>DEBUG;TRACE</DefineConstants>
28    <ErrorReport>prompt</ErrorReport>
29    <WarningLevel>4</WarningLevel>
30    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
31  </PropertyGroup>
32  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
33    <DebugType>pdbonly</DebugType>
34    <Optimize>true</Optimize>
35    <OutputPath>bin\Release\</OutputPath>
36    <DefineConstants>TRACE</DefineConstants>
37    <ErrorReport>prompt</ErrorReport>
38    <WarningLevel>4</WarningLevel>
39    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
42    <DebugSymbols>true</DebugSymbols>
43    <OutputPath>bin\x86\Debug\</OutputPath>
44    <DefineConstants>DEBUG;TRACE</DefineConstants>
45    <DebugType>full</DebugType>
46    <PlatformTarget>x86</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
51    <OutputPath>bin\x86\Release\</OutputPath>
52    <DefineConstants>TRACE</DefineConstants>
53    <Optimize>true</Optimize>
54    <DebugType>pdbonly</DebugType>
55    <PlatformTarget>x86</PlatformTarget>
56    <ErrorReport>prompt</ErrorReport>
57    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
60    <DebugSymbols>true</DebugSymbols>
61    <OutputPath>bin\x64\Debug\</OutputPath>
62    <DefineConstants>DEBUG;TRACE</DefineConstants>
63    <DebugType>full</DebugType>
64    <PlatformTarget>x64</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
67  </PropertyGroup>
68  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
69    <OutputPath>bin\x64\Release\</OutputPath>
70    <DefineConstants>TRACE</DefineConstants>
71    <Optimize>true</Optimize>
72    <DebugType>pdbonly</DebugType>
73    <PlatformTarget>x64</PlatformTarget>
74    <ErrorReport>prompt</ErrorReport>
75    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
76  </PropertyGroup>
77  <ItemGroup>
78    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
79      <HintPath>..\..\..\..\..\..\..\..\..\Programme\HeuristicLab 3.3\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
80    </Reference>
81    <Reference Include="System" />
82    <Reference Include="System.Core">
83      <RequiredTargetFramework>3.5</RequiredTargetFramework>
84    </Reference>
85    <Reference Include="System.Data.Linq">
86      <RequiredTargetFramework>3.5</RequiredTargetFramework>
87    </Reference>
88    <Reference Include="System.Drawing" />
89    <Reference Include="System.ServiceModel">
90      <RequiredTargetFramework>3.0</RequiredTargetFramework>
91    </Reference>
92    <Reference Include="System.Transactions" />
93    <Reference Include="System.Windows.Forms" />
94    <Reference Include="System.Xml.Linq">
95      <RequiredTargetFramework>3.5</RequiredTargetFramework>
96    </Reference>
97    <Reference Include="System.Data.DataSetExtensions">
98      <RequiredTargetFramework>3.5</RequiredTargetFramework>
99    </Reference>
100    <Reference Include="System.Data" />
101    <Reference Include="System.Xml" />
102  </ItemGroup>
103  <ItemGroup>
104    <Compile Include="Authorization\HivePermissions.cs" />
105    <Compile Include="Authorization\PermissionCollection.cs" />
106    <Compile Include="Authorization\PermissionContext.cs" />
107    <Compile Include="Authorization\PermissionException.cs" />
108    <Compile Include="Authorization\Policy.cs" />
109    <Compile Include="Authorization\PolicyCollection.cs" />
110    <Compile Include="ClientCommunicator.cs" />
111    <Compile Include="ClientFacade.cs" />
112    <Compile Include="ClientManager.cs" />
113    <Compile Include="DaoLocator.cs" />
114    <Compile Include="DbTestApp.cs" />
115    <Compile Include="DefaultScheduler.cs" />
116    <Compile Include="ExecutionEngineFacade.cs" />
117    <Compile Include="Authorization\HivePermissionManager.cs" />
118    <Compile Include="HiveServerCorePlugin.cs" />
119    <Compile Include="HiveServerMessages.Designer.cs" />
120    <Compile Include="InternalInterfaces\IHivePermissionManager.cs" />
121    <Compile Include="InternalInterfaces\IInternalClientCommunicator.cs" />
122    <Compile Include="InternalInterfaces\IInternalJobManager.cs" />
123    <Compile Include="InternalInterfaces\IScheduler.cs" />
124    <Compile Include="JobManager.cs" />
125    <Compile Include="LifecycleManager.cs" />
126    <Compile Include="Properties\AssemblyInfo.cs" />
127    <Compile Include="ServerConsoleFacade.cs" />
128    <Compile Include="ServiceLocator.cs" />
129    <Compile Include="Properties\Settings.Designer.cs">
130      <AutoGen>True</AutoGen>
131      <DesignTimeSharedInput>True</DesignTimeSharedInput>
132      <DependentUpon>Settings.settings</DependentUpon>
133    </Compile>
134    <Compile Include="Settings.cs" />
135    <Compile Include="SpringTransaction.cs" />
136  </ItemGroup>
137  <ItemGroup>
138    <None Include="app.config" />
139    <None Include="HeuristicLab.snk" />
140    <EmbeddedResource Include="Authorization\HivePermissionSet.xsd">
141      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
142    </EmbeddedResource>
143    <None Include="Properties\AssemblyInfo.frame" />
144    <None Include="Properties\Settings.settings">
145      <Generator>PublicSettingsSingleFileGenerator</Generator>
146      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
147    </None>
148  </ItemGroup>
149  <ItemGroup>
150    <EmbeddedResource Include="Authorization\HivePermissionSet.xml">
151      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
152    </EmbeddedResource>
153  </ItemGroup>
154  <ItemGroup>
155    <EmbeddedResource Include="Authorization\HivePermissionPolicy.xml">
156      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
157    </EmbeddedResource>
158  </ItemGroup>
159  <ItemGroup>
160    <WCFMetadata Include="Service References\" />
161  </ItemGroup>
162  <ItemGroup>
163    <ProjectReference Include="..\..\HeuristicLab.Hive.Server.DataAccess\3.3\HeuristicLab.Hive.Server.DataAccess-3.3.csproj">
164      <Project>{4D5A2A16-66C2-431D-9AA3-BD3041E64B84}</Project>
165      <Name>HeuristicLab.Hive.Server.DataAccess-3.3</Name>
166    </ProjectReference>
167    <ProjectReference Include="..\..\HeuristicLab.Hive.Server.LINQDataAccess\3.3\HeuristicLab.Hive.Server.LINQDataAccess-3.3.csproj">
168      <Project>{A4499DDD-D1B8-414F-98F6-903C2C71BEB0}</Project>
169      <Name>HeuristicLab.Hive.Server.LINQDataAccess-3.3</Name>
170    </ProjectReference>
171    <ProjectReference Include="..\..\HeuristicLab.Security.Contracts\3.3\HeuristicLab.Security.Contracts-3.3.csproj">
172      <Project>{D59E852C-F205-4647-8C05-EB9ED1CF44E9}</Project>
173      <Name>HeuristicLab.Security.Contracts-3.3</Name>
174    </ProjectReference>
175  </ItemGroup>
176  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
177  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
178       Other similar extension points exist, see Microsoft.Common.targets.
179  <Target Name="BeforeBuild">
180  </Target>
181  <Target Name="AfterBuild">
182  </Target>
183  -->
184  <PropertyGroup>
185    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
186set ProjectDir=$(ProjectDir)
187set SolutionDir=$(SolutionDir)
188set Outdir=$(Outdir)
189
190call PreBuildEvent.cmd</PreBuildEvent>
191  </PropertyGroup>
192</Project>
Note: See TracBrowser for help on using the repository browser.