Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/HeuristicLab.Problems.RoutePlanning.csproj @ 8293

Last change on this file since 8293 was 8293, checked in by spimming, 12 years ago

#1894:

  • new default constructor for osm base types
  • defined common interface for data sources
  • implemented xml data source
  • added test project with osm test files
File size: 4.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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{E93A30BD-D4C8-4DEC-8ECF-2BC3CD9F027B}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.RoutePlanning</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.RoutePlanning-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
41    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
42    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
43    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
44    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
45    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
46    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
47    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
48    <Reference Include="System" />
49    <Reference Include="System.Core" />
50    <Reference Include="System.Drawing" />
51    <Reference Include="System.Xml.Linq" />
52    <Reference Include="System.Data.DataSetExtensions" />
53    <Reference Include="Microsoft.CSharp" />
54    <Reference Include="System.Data" />
55    <Reference Include="System.Xml" />
56  </ItemGroup>
57  <ItemGroup>
58    <Compile Include="Osm.Data\XmlDataSource.cs" />
59    <Compile Include="Osm\IDataSource.cs" />
60    <Compile Include="Osm\Node.cs" />
61    <Compile Include="Osm\OsmBase.cs" />
62    <Compile Include="Osm\PointD.cs" />
63    <Compile Include="Osm\Relation.cs" />
64    <Compile Include="Osm\RelationMember.cs" />
65    <Compile Include="Osm\TagConstants.cs" />
66    <Compile Include="Osm\Way.cs" />
67    <Compile Include="Plugin.cs" />
68    <Compile Include="Properties\AssemblyInfo.cs" />
69    <Compile Include="RoutePlanningProblem.cs" />
70  </ItemGroup>
71  <ItemGroup>
72    <None Include="HeuristicLab.snk" />
73    <None Include="Plugin.cs.frame" />
74    <None Include="Properties\AssemblyInfo.cs.frame" />
75  </ItemGroup>
76  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
77  <PropertyGroup>
78    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
79set ProjectDir=$(ProjectDir)
80set SolutionDir=$(SolutionDir)
81set Outdir=$(Outdir)
82
83call PreBuildEvent.cmd</PreBuildEvent>
84  </PropertyGroup>
85  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86       Other similar extension points exist, see Microsoft.Common.targets.
87  <Target Name="BeforeBuild">
88  </Target>
89  <Target Name="AfterBuild">
90  </Target>
91  -->
92</Project>
Note: See TracBrowser for help on using the repository browser.