Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataTransfer/3.3/HeuristicLab.Services.OKB.DataTransfer-3.3.csproj @ 5379

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

Worked on OKB (#1174)

File size: 5.0 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>v4.0</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="BinaryData.cs">
53      <SubType>Code</SubType>
54    </Compile>
55    <Compile Include="BoolValue.cs" />
56    <Compile Include="BinaryValue.cs" />
57    <Compile Include="IntValue.cs" />
58    <Compile Include="LongValue.cs" />
59    <Compile Include="FloatValue.cs" />
60    <Compile Include="DoubleValue.cs" />
61    <Compile Include="StringValue.cs" />
62    <Compile Include="Value.cs" />
63    <Compile Include="Filters\BooleanOperation.cs" />
64    <Compile Include="Filters\NameOrdinalComparisonFloatFilter.cs" />
65    <Compile Include="Filters\NameOrdinalComparisonIntFilter.cs" />
66    <Compile Include="Filters\OrdinalComparisonIntFilter.cs" />
67    <Compile Include="Filters\NameStringComparisonAvailableValuesFilter.cs" />
68    <Compile Include="Filters\NameStringComparisonFilter.cs" />
69    <Compile Include="Filters\StringComparison.cs" />
70    <Compile Include="Filters\StringComparisonAvailableValuesFilter.cs" />
71    <Compile Include="Filters\StringComparisonFilter.cs" />
72    <Compile Include="QueryResult.cs" />
73    <Compile Include="Filters\CombinedFilter.cs" />
74    <Compile Include="Filters\OrdinalComparisonFilter.cs" />
75    <Compile Include="Filters\EqualityComparisonFilter.cs" />
76    <Compile Include="Filters\OrdinalComparisonDateTimeFilter.cs" />
77    <Compile Include="Filters\NameEqualityComparisonByteArrayFilter.cs" />
78    <Compile Include="Filters\NameOrdinalComparisonLongFilter.cs" />
79    <Compile Include="Filters\NameOrdinalComparisonDoubleFilter.cs" />
80    <Compile Include="Filters\NameEqualityComparisonBoolFilter.cs" />
81    <Compile Include="Filters\OrdinalComparisonLongFilter.cs" />
82    <Compile Include="Filters\OrdinalComparison.cs" />
83    <Compile Include="Filters\EqualityComparison.cs" />
84    <Compile Include="Filters\Filter.cs" />
85    <Compile Include="Run.cs" />
86    <Compile Include="Problem.cs" />
87    <Compile Include="ProblemClass.cs" />
88    <Compile Include="DataType.cs" />
89    <Compile Include="User.cs" />
90    <Compile Include="NamedOKBItem.cs" />
91    <Compile Include="OKBItem.cs" />
92    <Compile Include="Platform.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94    <None Include="Properties\AssemblyInfo.frame" />
95  </ItemGroup>
96  <ItemGroup>
97    <None Include="HeuristicLab.snk" />
98  </ItemGroup>
99  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
100  <PropertyGroup>
101    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
102set ProjectDir=$(ProjectDir)
103set SolutionDir=$(SolutionDir)
104set Outdir=$(Outdir)
105
106call PreBuildEvent.cmd</PreBuildEvent>
107  </PropertyGroup>
108  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109       Other similar extension points exist, see Microsoft.Common.targets.
110  <Target Name="BeforeBuild">
111  </Target>
112  <Target Name="AfterBuild">
113  </Target>
114  -->
115</Project>
Note: See TracBrowser for help on using the repository browser.