-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRealSenseD435Module.csproj
More file actions
46 lines (38 loc) · 1.93 KB
/
RealSenseD435Module.csproj
File metadata and controls
46 lines (38 loc) · 1.93 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>ReFlex.Sensor.RealSenseD435Module</PackageId>
<Authors />
<Copyright>Copyright © 2021-2025</Copyright>
<Company>GTV - Gesellschaft fuer Technische Visualistik mbH, Dresden</Company>
<Version>0.9.9</Version>
<AssemblyVersion>0.9.9</AssemblyVersion>
<FileVersion>0.9.9</FileVersion>
<Product>ReFlex.Sensor</Product>
<AssemblyName>ReFlex.Sensor.RealSenseD435Module</AssemblyName>
<RootNamespace>ReFlex.Sensor.RealSenseD435Module</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="Intel.RealSenseWithNativeDll" Version="2.51.1.1" />
<PackageReference Include="Microsoft.CodeCoverage" Version="18.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
<PackageReference Include="NLog" Version="6.1.0" />
<PackageReference Include="Prise.Plugin" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Tracking\Tracking.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 %26%26 cp -r $(OutDir) ../../../export/Modules" Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
</Project>