Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.DB/HeuristicLab.CEDMA.DB.csproj @ 1129

Last change on this file since 1129 was 1129, checked in by gkronber, 15 years ago

worked on RDF backend. Implemented query support to load datasets. Queries for dispatcher and results still missing. (#419)

File size: 5.3 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.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{B3D6D8D9-2B1F-47EC-9C73-77FAECF87310}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.CEDMA.DB</RootNamespace>
12    <AssemblyName>HeuristicLab.CEDMA.DB-3.2</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>false</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17    <StartupObject>
18    </StartupObject>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
38    <DebugSymbols>true</DebugSymbols>
39    <OutputPath>bin\x86\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <DebugType>full</DebugType>
42    <PlatformTarget>x86</PlatformTarget>
43    <ErrorReport>prompt</ErrorReport>
44  </PropertyGroup>
45  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
46    <OutputPath>bin\x86\Release\</OutputPath>
47    <DefineConstants>TRACE</DefineConstants>
48    <Optimize>true</Optimize>
49    <DebugType>pdbonly</DebugType>
50    <PlatformTarget>x86</PlatformTarget>
51    <ErrorReport>prompt</ErrorReport>
52  </PropertyGroup>
53  <ItemGroup>
54    <Reference Include="SemWeb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
55    <Reference Include="SemWeb.SqliteStore, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" />
56    <Reference Include="System" />
57    <Reference Include="System.Core">
58      <RequiredTargetFramework>3.5</RequiredTargetFramework>
59    </Reference>
60    <Reference Include="System.Data.Linq">
61      <RequiredTargetFramework>3.5</RequiredTargetFramework>
62    </Reference>
63    <Reference Include="System.ServiceModel">
64      <RequiredTargetFramework>3.0</RequiredTargetFramework>
65    </Reference>
66    <Reference Include="System.Xml.Linq">
67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
68    </Reference>
69    <Reference Include="System.Data.DataSetExtensions">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
72    <Reference Include="System.Data" />
73    <Reference Include="System.Xml" />
74  </ItemGroup>
75  <ItemGroup>
76    <Compile Include="Store.cs" />
77    <Compile Include="HeuristicLabCedmaDbPlugin.cs" />
78    <Compile Include="Properties\AssemblyInfo.cs" />
79  </ItemGroup>
80  <ItemGroup>
81    <None Include="HeuristicLab.snk" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
85      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
86      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
89      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
90      <Name>HeuristicLab.Core</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
93      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
94      <Name>HeuristicLab.Data</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
97      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
98      <Name>HeuristicLab.PluginInfrastructure</Name>
99    </ProjectReference>
100  </ItemGroup>
101  <ItemGroup>
102    <Content Include="SemWeb.dll">
103      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
104    </Content>
105    <Content Include="SemWeb.SqliteStore.dll" />
106  </ItemGroup>
107  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
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  <PropertyGroup>
116    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
117set ProjectDir=$(ProjectDir)
118set SolutionDir=$(SolutionDir)
119set Outdir=$(Outdir)
120
121call PreBuildEvent.cmd</PreBuildEvent>
122  </PropertyGroup>
123</Project>
Note: See TracBrowser for help on using the repository browser.