forked from noobusdeer/PolylineDecoder-vvvv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DecodePolyline.csproj
78 lines (78 loc) · 3.61 KB
/
DecodePolyline.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{6A0AFB1F-8219-4A08-85F7-B7F19B66AC16}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Library</OutputType>
<RootNamespace>VVVV.Nodes</RootNamespace>
<AssemblyName>DecodePolyline</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<ReferencePath>..\..\..\..\..\program_files\vvvv_45beta32.1_x86\lib\core\;..\..\..\..\..\program_files\vvvv_45beta32.1_x86\lib\nodes\plugins\</ReferencePath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DebugType>Full</DebugType>
<DebugSymbols>True</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>TRACE</DefineConstants>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x86' ">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'x64' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>bin\AnyCPU\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<OutputPath>bin\AnyCPU\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="SlimDX">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\SlimDX.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition.Codeplex">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\System.ComponentModel.Composition.CodePlex.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
<Reference Include="VVVV.Core">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\VVVV.Core.dll</HintPath>
</Reference>
<Reference Include="VVVV.PluginInterfaces">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\VVVV.PluginInterfaces.dll</HintPath>
</Reference>
<Reference Include="VVVV.Utils">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\VVVV.Utils.dll</HintPath>
</Reference>
<Reference Include="VVVV.Utils3rdParty">
<Private>False</Private>
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\vvvv_32.1_x86\lib\core\VVVV.Utils3rdParty.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="DecodePolylineNode.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
</Project>