-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulatorModule.csproj
More file actions
42 lines (37 loc) · 1.96 KB
/
EmulatorModule.csproj
File metadata and controls
42 lines (37 loc) · 1.96 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>ReFlex.Sensor.EmulatorModule</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.EmulatorModule</AssemblyName>
<RootNamespace>ReFlex.Sensor.EmulatorModule</RootNamespace>
<Platforms>x64;ARM64;AnyCPU</Platforms>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Configurations>Debug;Release;CI</Configurations>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeCoverage" Version="18.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" />
<PackageReference Include="Prise.Plugin" Version="6.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="System.Drawing.Common" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Graphics\Graphics.csproj" />
<ProjectReference Include="..\..\Core\Networking\Networking.csproj" />
<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" && cp -r "$(OutDir)" "../../../export/Modules"" Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
</Project>