-
Notifications
You must be signed in to change notification settings - Fork 10
/
GeoAPI.Net.VS2010.targets
33 lines (33 loc) · 1.56 KB
/
GeoAPI.Net.VS2010.targets
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">
<DotNetString>Net40</DotNetString>
<DotNet>;DOTNET35;DOTNET40</DotNet>
<IncludeCollections>FALSE</IncludeCollections>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v3.5' ">
<DotNetString>Net35</DotNetString>
<DotNet>;DOTNET35</DotNet>
<IncludeCollections>TRUE</IncludeCollections>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFrameworkVersion)' == 'v2.0' ">
<DotNetString>Net20</DotNetString>
<DotNet />
<IncludeCollections>TRUE</IncludeCollections>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE$(DotNet)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE$(DotNet)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x64' "><PlatformTarget>x64</PlatformTarget></PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' "><PlatformTarget>x86</PlatformTarget></PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' "><PlatformTarget>AnyCPU</PlatformTarget></PropertyGroup>
</Project>