-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAzureKinectModule.csproj
More file actions
76 lines (68 loc) · 3.47 KB
/
AzureKinectModule.csproj
File metadata and controls
76 lines (68 loc) · 3.47 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>ReFlex.Sensor.AzureKinectModule</PackageId>
<Authors>Mathias Müller</Authors>
<Copyright>Copyright © 2021-2025</Copyright>
<Company>
GTV - Gesellschaft fuer Technische Visualistik mbH, Dresden
Hochschule fuer Technik und Wirtschaft Dresden, Dresden
</Company>
<Version>0.9.9</Version>
<AssemblyVersion>0.9.9</AssemblyVersion>
<FileVersion>0.9.9</FileVersion>
<Product>ReFlex.Sensor</Product>
<AssemblyName>ReFlex.Sensor.AzureKinectModule</AssemblyName>
<RootNamespace>ReFlex.Sensor.AzureKinectModule</RootNamespace>
<Platforms>x64;ARM64;AnyCPU</Platforms>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Kinect.Sensor" Version="1.4.2" />
<PackageReference Include="Microsoft.CodeCoverage" Version="18.5.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
<PackageReference Include="Prise.Plugin" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Common\Common.csproj" />
<ProjectReference Include="..\..\Core\Networking\Networking.csproj" />
<ProjectReference Include="..\..\Core\Tracking\Tracking.csproj" />
<ProjectReference Include="..\..\Core\Util\Util.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition=" '$(Configuration)' != 'CI' ">
<Exec Command="XCOPY "$(OutDir)*.*" "$(ProjectDir)..\..\..\export\Modules" /S /Y /I" Condition=" '$(OS)' == 'Windows_NT' " />
<Exec Command="mkdir -p "../../../export/Modules" && cp -r "$(OutDir)" "../../../export/Modules"" Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
<ItemGroup>
<Content Update="C:\Users\Mathias\.nuget\packages\microsoft.azure.kinect.sensor\1.4.1\build\netstandard2.0\..\..\lib\native\amd64\release\depthengine_2_0.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="C:\Users\Mathias\.nuget\packages\microsoft.azure.kinect.sensor\1.4.1\build\netstandard2.0\..\..\lib\native\amd64\release\k4a.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="C:\Users\Mathias\.nuget\packages\microsoft.azure.kinect.sensor\1.4.1\build\netstandard2.0\..\..\lib\native\amd64\release\k4arecord.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="C:\Users\Mathias\.nuget\packages\microsoft.azure.kinect.sensor\1.4.1\build\netstandard2.0\..\..\lib\native\amd64\release\k4a.pdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Update="C:\Users\Mathias\.nuget\packages\microsoft.azure.kinect.sensor\1.4.1\build\netstandard2.0\..\..\lib\native\amd64\release\k4arecord.pdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>