-
Notifications
You must be signed in to change notification settings - Fork 5
/
SharpMap.Rendering.Thematics.CategoryTheme.csproj
100 lines (100 loc) · 4.81 KB
/
SharpMap.Rendering.Thematics.CategoryTheme.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{565E0DA8-F456-486E-96B6-19C1C273295D}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<RootNamespace>SharpMap.Rendering.Thematics</RootNamespace>
<AssemblyName>SharpMap.Rendering.Thematics.CategoryTheme</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="BruTile">
<HintPath>$(SolutionDir)packages\BruTile.0.7.4.4\lib\net40\BruTile.dll</HintPath>
</Reference>
<Reference Include="BruTile.Desktop">
<HintPath>$(SolutionDir)packages\BruTile.0.7.4.4\lib\net40\BruTile.Desktop.dll</HintPath>
</Reference>
<Reference Include="BruTile.MbTiles">
<HintPath>$(SolutionDir)packages\BruTile.0.7.4.4\lib\net40\BruTile.MbTiles.dll</HintPath>
</Reference>
<Reference Include="BruTile.Serialization">
<HintPath>$(SolutionDir)packages\BruTile.0.7.4.4\lib\net40\BruTile.Serialization.dll</HintPath>
</Reference>
<Reference Include="Common.Logging">
<HintPath>$(SolutionDir)packages\Common.Logging.2.0.0\lib\2.0\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="GeoAPI">
<HintPath>$(SolutionDir)packages\GeoAPI.1.7.2\lib\net40-client\GeoAPI.dll</HintPath>
</Reference>
<Reference Include="NetTopologySuite">
<HintPath>$(SolutionDir)packages\NetTopologySuite.1.13.2\lib\net40-client\NetTopologySuite.dll</HintPath>
</Reference>
<Reference Include="NetTopologySuite.IO.GeoTools">
<HintPath>$(SolutionDir)packages\NetTopologySuite.IO.1.13.2\lib\net40-client\NetTopologySuite.IO.GeoTools.dll</HintPath>
</Reference>
<Reference Include="NetTopologySuite.IO.MsSqlSpatial">
<HintPath>$(SolutionDir)packages\NetTopologySuite.IO.1.13.2\lib\net40-client\NetTopologySuite.IO.MsSqlSpatial.dll</HintPath>
</Reference>
<Reference Include="NetTopologySuite.IO.PostGis">
<HintPath>$(SolutionDir)packages\NetTopologySuite.IO.1.13.2\lib\net40-client\NetTopologySuite.IO.PostGis.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>$(SolutionDir)packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="PowerCollections">
<HintPath>$(SolutionDir)packages\NetTopologySuite.1.13.2\lib\net40-client\PowerCollections.dll</HintPath>
</Reference>
<Reference Include="ProjNet">
<HintPath>$(SolutionDir)packages\ProjNET4GeoAPI.1.3.0.3\lib\net40-client\ProjNet.dll</HintPath>
</Reference>
<Reference Include="SharpMap">
<HintPath>$(SolutionDir)packages\SharpMap.1.1.0\lib\net40-client\SharpMap.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Data.SQLite">
<HintPath>$(SolutionDir)packages\System.Data.SQLite.MSIL.1.0.86.0\lib\net40\System.Data.SQLite.dll</HintPath>
</Reference>
<Reference Include="System.Data.SQLite.Linq">
<HintPath>$(SolutionDir)packages\System.Data.SQLite.MSIL.1.0.86.0\lib\net40\System.Data.SQLite.Linq.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="CategoryTheme.cs" />
<Compile Include="CategoryThemeItem.cs" />
<Compile Include="CategoryThemeRangeItem.cs" />
<Compile Include="CategoryThemeValuesItem.cs" />
<Compile Include="ICategoryThemeItem.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>