Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Grid/HeuristicLab.Grid.csproj @ 400

Last change on this file since 400 was 374, checked in by gkronber, 16 years ago

added key to sign plugin HeuristicLab.Grid

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{545CE756-98D8-423B-AC2E-6E7D70926E5C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Grid</RootNamespace>
12    <AssemblyName>HeuristicLab.Grid</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
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    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Drawing" />
42    <Reference Include="System.Runtime.Serialization">
43      <RequiredTargetFramework>3.0</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.ServiceModel">
46      <RequiredTargetFramework>3.0</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Windows.Forms" />
49    <Reference Include="System.Xml.Linq">
50      <RequiredTargetFramework>3.5</RequiredTargetFramework>
51    </Reference>
52    <Reference Include="System.Data" />
53    <Reference Include="System.Xml" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="ClientForm.cs">
57      <SubType>Form</SubType>
58    </Compile>
59    <Compile Include="ClientForm.designer.cs">
60      <DependentUpon>ClientForm.cs</DependentUpon>
61    </Compile>
62    <Compile Include="EngineStore.cs" />
63    <Compile Include="GridClientApplication.cs" />
64    <Compile Include="GridServer.cs" />
65    <Compile Include="GridServerApplication.cs" />
66    <Compile Include="HeuristicLabGridPlugin.cs" />
67    <Compile Include="IEngineStore.cs" />
68    <Compile Include="IGridServer.cs" />
69    <Compile Include="JobManager.cs" />
70    <Compile Include="ProcessingEngine.cs" />
71    <Compile Include="Properties\AssemblyInfo.cs" />
72    <Compile Include="ServerForm.cs">
73      <SubType>Form</SubType>
74    </Compile>
75    <Compile Include="ServerForm.designer.cs">
76      <DependentUpon>ServerForm.cs</DependentUpon>
77    </Compile>
78  </ItemGroup>
79  <ItemGroup>
80    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
81      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
82      <Name>HeuristicLab.Core</Name>
83    </ProjectReference>
84    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
85      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
86      <Name>HeuristicLab.PluginInfrastructure</Name>
87    </ProjectReference>
88  </ItemGroup>
89  <ItemGroup>
90    <EmbeddedResource Include="ClientForm.resx">
91      <DependentUpon>ClientForm.cs</DependentUpon>
92      <SubType>Designer</SubType>
93    </EmbeddedResource>
94    <EmbeddedResource Include="ServerForm.resx">
95      <DependentUpon>ServerForm.cs</DependentUpon>
96      <SubType>Designer</SubType>
97    </EmbeddedResource>
98  </ItemGroup>
99  <ItemGroup>
100    <None Include="HeuristicLab.snk" />
101    <None Include="Properties\AssemblyInfo.frame" />
102  </ItemGroup>
103  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105       Other similar extension points exist, see Microsoft.Common.targets.
106  <Target Name="BeforeBuild">
107  </Target>
108  <Target Name="AfterBuild">
109  </Target>
110  -->
111  <PropertyGroup>
112    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
113  </PropertyGroup>
114</Project>
Note: See TracBrowser for help on using the repository browser.