Skip to content

Commit 078441f

Browse files
committed
Add an empty body tracker visualizer project
1 parent 17d7c38 commit 078441f

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Windows;
2+
3+
[assembly: ThemeInfo(
4+
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
5+
//(used if a resource is not found in the page,
6+
// or application resource dictionaries)
7+
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
8+
//(used if a resource is not found in the page,
9+
// app, or any theme specific resource dictionaries)
10+
)]
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0-windows</TargetFramework>
5+
<UseWPF>true</UseWPF>
6+
<Platforms>x64</Platforms>
7+
<PlatformTarget>x64</PlatformTarget>
8+
<AssemblyName>OpenSense.WPF.Components.AzureKinect.BodyTracking.Visualizer</AssemblyName>
9+
<RootNamespace>OpenSense.WPF.Components.AzureKinect.BodyTracking.Visualizer</RootNamespace>
10+
<ImplicitUsings>enable</ImplicitUsings>
11+
<Nullable>enable</Nullable>
12+
<EmbedAllSources>true</EmbedAllSources>
13+
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<PackageReference Include="Microsoft.Azure.Kinect.BodyTracking" Version="1.1.2"/>
17+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
18+
<PackageReference Include="System.Composition" Version="8.0.0" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<ProjectReference Include="..\..\ComponentContract\ComponentContract.csproj" />
23+
<ProjectReference Include="..\..\WpfComponentContract\WpfComponentContract.csproj" />
24+
</ItemGroup>
25+
26+
</Project>

OpenSense.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureKinect.BodyTracking",
266266
EndProject
267267
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureKinect.BodyTracking.WPF", "Components\AzureKinect.BodyTracking.WPF\AzureKinect.BodyTracking.WPF.csproj", "{53560CA6-18B1-4E01-B1B9-7FBE3E3DA966}"
268268
EndProject
269+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzureKinect.BodyTracking.Visualizer.WPF", "Components\AzureKinect.BodyTracking.Visualizer.WPF\AzureKinect.BodyTracking.Visualizer.WPF.csproj", "{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B}"
270+
EndProject
269271
Global
270272
GlobalSection(SolutionConfigurationPlatforms) = preSolution
271273
Debug|x64 = Debug|x64
@@ -760,6 +762,10 @@ Global
760762
{53560CA6-18B1-4E01-B1B9-7FBE3E3DA966}.Debug|x64.Build.0 = Debug|x64
761763
{53560CA6-18B1-4E01-B1B9-7FBE3E3DA966}.Release|x64.ActiveCfg = Release|x64
762764
{53560CA6-18B1-4E01-B1B9-7FBE3E3DA966}.Release|x64.Build.0 = Release|x64
765+
{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B}.Debug|x64.ActiveCfg = Debug|x64
766+
{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B}.Debug|x64.Build.0 = Debug|x64
767+
{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B}.Release|x64.ActiveCfg = Release|x64
768+
{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B}.Release|x64.Build.0 = Release|x64
763769
EndGlobalSection
764770
GlobalSection(SolutionProperties) = preSolution
765771
HideSolutionNode = FALSE
@@ -881,6 +887,7 @@ Global
881887
{46199A61-B4A9-4AFB-9768-4557886BB9FB} = {5C411F31-BF09-4976-95CD-8748327C8478}
882888
{E2FE64B3-5BF8-4640-BC2E-B14D99FE0966} = {5C411F31-BF09-4976-95CD-8748327C8478}
883889
{53560CA6-18B1-4E01-B1B9-7FBE3E3DA966} = {5C411F31-BF09-4976-95CD-8748327C8478}
890+
{CC080AC4-0D1A-4C7D-8E12-C503FAF6289B} = {5C411F31-BF09-4976-95CD-8748327C8478}
884891
EndGlobalSection
885892
GlobalSection(ExtensibilityGlobals) = postSolution
886893
SolutionGuid = {4CB31E6C-64DF-499B-B990-0C72B1A2AF47}

0 commit comments

Comments
 (0)