source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Microsoft.Samples.Kinect.Webserver/Microsoft.Samples.Kinect.Webserver.csproj@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

  • Property svn:mime-type set to application/xml
File size: 7.7 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>{9216E84F-1723-484E-8DE6-250B875F24B6}</ProjectGuid>
9 <OutputType>Library</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>Microsoft.Samples.Kinect.Webserver</RootNamespace>
12 <AssemblyName>Microsoft.Samples.Kinect.Webserver</AssemblyName>
13 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14 <WarningLevel>4</WarningLevel>
15 <TargetFrameworkProfile />
16 </PropertyGroup>
17 <PropertyGroup>
18 <OutputPath>$(SolutionDir)$(PlatformTarget).$(Configuration)\</OutputPath>
19 </PropertyGroup>
20 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
21 <DebugSymbols>true</DebugSymbols>
22 <DefineConstants>DEBUG;TRACE</DefineConstants>
23 <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
24 <DebugType>full</DebugType>
25 <PlatformTarget>AnyCPU</PlatformTarget>
26 <Prefer32Bit>false</Prefer32Bit>
27 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
28 </PropertyGroup>
29 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
30 <Optimize>true</Optimize>
31 <DefineConstants>TRACE</DefineConstants>
32 <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
33 <DebugType>pdbonly</DebugType>
34 <PlatformTarget>AnyCPU</PlatformTarget>
35 <Prefer32Bit>false</Prefer32Bit>
36 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
37 </PropertyGroup>
38 <ItemGroup>
39 <Reference Include="Microsoft.Kinect.Toolkit.BackgroundRemoval">
40 <HintPath>$(KINECT_TOOLKIT_DIR)Assemblies\Microsoft.Kinect.Toolkit.BackgroundRemoval.dll</HintPath>
41 </Reference>
42 <Reference Include="Microsoft.Kinect.Toolkit.Interaction">
43 <HintPath>$(KINECT_TOOLKIT_DIR)Assemblies\Microsoft.Kinect.Toolkit.Interaction.dll</HintPath>
44 </Reference>
45 <Reference Include="Microsoft.Kinect">
46 <SpecificVersion>False</SpecificVersion>
47 <HintPath>$(KINECTSDK10_DIR)\Assemblies\Microsoft.Kinect.dll</HintPath>
48 </Reference>
49 <Reference Include="PresentationCore" />
50 <Reference Include="PresentationFramework" />
51 <Reference Include="System" />
52 <Reference Include="System.Core" />
53 <Reference Include="System.Runtime.Serialization" />
54 <Reference Include="System.Web" />
55 <Reference Include="System.Web.Extensions" />
56 <Reference Include="System.Xaml" />
57 <Reference Include="System.Xml.Linq" />
58 <Reference Include="System.Data.DataSetExtensions" />
59 <Reference Include="Microsoft.CSharp" />
60 <Reference Include="System.Data" />
61 <Reference Include="System.Xml" />
62 <Reference Include="WindowsBase" />
63 </ItemGroup>
64 <ItemGroup>
65 <Compile Include="FileRequestHandler.cs" />
66 <Compile Include="FileRequestHandlerFactory.cs" />
67 <Compile Include="IHttpRequestHandler.cs" />
68 <Compile Include="IHttpRequestHandlerFactory.cs" />
69 <Compile Include="JsonSerializationExtensions.cs" />
70 <Compile Include="KinectWebserver.cs" />
71 <Compile Include="Properties\AssemblyInfo.cs" />
72 <Compile Include="Properties\Resources.Designer.cs">
73 <AutoGen>True</AutoGen>
74 <DesignTime>True</DesignTime>
75 <DependentUpon>Resources.resx</DependentUpon>
76 </Compile>
77 <Compile Include="RpcResult.cs" />
78 <Compile Include="Sensor\BackgroundRemovalStreamHandler.cs" />
79 <Compile Include="Sensor\DefaultUserStateManager.cs" />
80 <Compile Include="Sensor\IUserStateManager.cs" />
81 <Compile Include="Sensor\InteractionStreamHandler.cs" />
82 <Compile Include="Sensor\ISensorStreamHandler.cs" />
83 <Compile Include="Sensor\ISensorStreamHandlerFactory.cs" />
84 <Compile Include="Sensor\KinectRequestHandler.cs" />
85 <Compile Include="Sensor\KinectRequestHandlerFactory.cs" />
86 <Compile Include="Sensor\SensorStatusStreamHandler.cs" />
87 <Compile Include="Sensor\SensorStreamHandlerBase.cs" />
88 <Compile Include="Sensor\SensorStreamHandlerContext.cs" />
89 <Compile Include="Sensor\SensorStreamHandlerFactory.cs" />
90 <Compile Include="Sensor\Serialization\BackgroundRemovalStreamMessage.cs" />
91 <Compile Include="Sensor\Serialization\EventMessage.cs" />
92 <Compile Include="Sensor\Serialization\FunctionCallRequest.cs" />
93 <Compile Include="Sensor\Serialization\FunctionCallResponse.cs" />
94 <Compile Include="Sensor\Serialization\ImageHeaderStreamMessage.cs" />
95 <Compile Include="Sensor\Serialization\InteractionStreamHitTestInfo.cs" />
96 <Compile Include="Sensor\Serialization\InteractionStreamMessage.cs" />
97 <Compile Include="Sensor\Serialization\MessageHandPointer.cs" />
98 <Compile Include="Sensor\Serialization\SensorStatusEventMessage.cs" />
99 <Compile Include="Sensor\Serialization\SkeletonStreamMessage.cs" />
100 <Compile Include="Sensor\Serialization\StateMappingEntry.cs" />
101 <Compile Include="Sensor\Serialization\StreamMessage.cs" />
102 <Compile Include="Sensor\Serialization\UserStatesChangedEventMessage.cs" />
103 <Compile Include="Sensor\Serialization\UserTrackingIdChangedEventArgs.cs" />
104 <Compile Include="Sensor\SkeletonStreamHandler.cs" />
105 <Compile Include="Sensor\UserActivityMeter.cs" />
106 <Compile Include="Sensor\UserActivityRecord.cs" />
107 <Compile Include="Sensor\UserStateChangedEventArgs.cs" />
108 <Compile Include="Sensor\UserViewerColorizer.cs" />
109 <Compile Include="SharedConstants.cs" />
110 <Compile Include="ThreadHostedHttpListener.cs" />
111 <Compile Include="UriUtilities.cs" />
112 <Compile Include="WebSocketChannelBase.cs" />
113 <Compile Include="WebSocketEventChannel.cs" />
114 <Compile Include="WebSocketMessage.cs" />
115 <Compile Include="WebSocketMessageExtensions.cs" />
116 <Compile Include="WebSocketRpcChannel.cs" />
117 </ItemGroup>
118 <ItemGroup>
119 <EmbeddedResource Include="Properties\Resources.resx">
120 <Generator>ResXFileCodeGenerator</Generator>
121 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
122 </EmbeddedResource>
123 </ItemGroup>
124 <ItemGroup>
125 <Content Include="$(KINECT_TOOLKIT_DIR)Redist\x86\KinectInteraction180_32.dll">
126 <Link>KinectInteraction180_32.dll</Link>
127 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
128 </Content>
129 <Content Include="$(KINECT_TOOLKIT_DIR)Redist\amd64\KinectInteraction180_64.dll">
130 <Link>KinectInteraction180_64.dll</Link>
131 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
132 </Content>
133 <Content Include="$(KINECT_TOOLKIT_DIR)Redist\x86\KinectBackgroundRemoval180_32.dll">
134 <Link>KinectBackgroundRemoval180_32.dll</Link>
135 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
136 </Content>
137 <Content Include="$(KINECT_TOOLKIT_DIR)Redist\amd64\KinectBackgroundRemoval180_64.dll">
138 <Link>KinectBackgroundRemoval180_64.dll</Link>
139 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
140 </Content>
141 </ItemGroup>
142 <ItemGroup>
143 <ProjectReference Include="..\Microsoft.Kinect.Toolkit\Microsoft.Kinect.Toolkit.csproj">
144 <Project>{c6f9c31b-6130-4443-a5cc-ef0664552ecd}</Project>
145 <Name>Microsoft.Kinect.Toolkit</Name>
146 </ProjectReference>
147 </ItemGroup>
148 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
149 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
150 Other similar extension points exist, see Microsoft.Common.targets.
151 <Target Name="BeforeBuild">
152 </Target>
153 <Target Name="AfterBuild">
154 </Target>
155 -->
156</Project>
Note: See TracBrowser for help on using the repository browser.