Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Services.OKB.DataTransfer/3.3/HeuristicLab.Services.OKB.DataTransfer-3.3.csproj @ 4591

Last change on this file since 4591 was 4591, checked in by swagner, 14 years ago

Worked on OKB (#1174)

File size: 4.4 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>{209FD7A1-DFB2-4B9F-9268-B95E886B2F7A}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.OKB.DataTransfer</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.OKB.DataTransfer-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  </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    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="System" />
42    <Reference Include="System.Core" />
43    <Reference Include="System.Runtime.Serialization" />
44    <Reference Include="System.Xml.Linq" />
45    <Reference Include="System.Data.DataSetExtensions" />
46    <Reference Include="System.Data" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="AlgorithmClass.cs" />
51    <Compile Include="Algorithm.cs" />
52    <Compile Include="AlgorithmData.cs" />
53    <Compile Include="AlgorithmParameter.cs" />
54    <Compile Include="AlgorithmParameterValue.cs" />
55    <Compile Include="AlgorithmParameterBlobValue.cs" />
56    <Compile Include="AlgorithmParameterBoolValue.cs" />
57    <Compile Include="AlgorithmParameterFloatValue.cs" />
58    <Compile Include="AlgorithmParameterIntValue.cs" />
59    <Compile Include="AlgorithmParameterStringValue.cs" />
60    <Compile Include="ResultFloatValue.cs" />
61    <Compile Include="ResultBoolValue.cs" />
62    <Compile Include="ResultIntValue.cs" />
63    <Compile Include="ResultStringValue.cs" />
64    <Compile Include="ResultBlobValue.cs" />
65    <Compile Include="ProblemParameterBoolValue.cs" />
66    <Compile Include="ProblemParameterFloatValue.cs" />
67    <Compile Include="ProblemParameterIntValue.cs" />
68    <Compile Include="ProblemParameterStringValue.cs" />
69    <Compile Include="ProblemParameterBlobValue.cs" />
70    <Compile Include="ResultValue.cs" />
71    <Compile Include="ProblemParameterValue.cs" />
72    <Compile Include="Run.cs" />
73    <Compile Include="Experiment.cs" />
74    <Compile Include="Result.cs" />
75    <Compile Include="ProblemParameter.cs" />
76    <Compile Include="ProblemData.cs" />
77    <Compile Include="Problem.cs" />
78    <Compile Include="ProblemClass.cs" />
79    <Compile Include="DataType.cs" />
80    <Compile Include="User.cs" />
81    <Compile Include="NamedOKBItem.cs" />
82    <Compile Include="OKBItem.cs" />
83    <Compile Include="Platform.cs" />
84    <Compile Include="Properties\AssemblyInfo.cs" />
85    <None Include="Properties\AssemblyInfo.frame" />
86  </ItemGroup>
87  <ItemGroup>
88    <None Include="HeuristicLab.snk" />
89  </ItemGroup>
90  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
91  <PropertyGroup>
92    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
93set ProjectDir=$(ProjectDir)
94set SolutionDir=$(SolutionDir)
95set Outdir=$(Outdir)
96
97call PreBuildEvent.cmd</PreBuildEvent>
98  </PropertyGroup>
99  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
100       Other similar extension points exist, see Microsoft.Common.targets.
101  <Target Name="BeforeBuild">
102  </Target>
103  <Target Name="AfterBuild">
104  </Target>
105  -->
106</Project>
Note: See TracBrowser for help on using the repository browser.