-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbHapticsRelay.csproj
More file actions
104 lines (97 loc) · 3.59 KB
/
Copy pathbHapticsRelay.csproj
File metadata and controls
104 lines (97 loc) · 3.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Title>bHapticsRelay</Title>
<Description>Acts as a relay to bHaptics Player for SDK2 events.</Description>
<Copyright>2025 Dteyn (https://github.com/Dteyn)</Copyright>
<PackageProjectUrl>https://github.com/Dteyn/bHapticsRelay</PackageProjectUrl>
<PackageIcon>bhaptics-logo.png</PackageIcon>
<ApplicationIcon>bhaptics-relay-icon.ico</ApplicationIcon>
<Authors>https://github.com/Dteyn</Authors>
<Product>bHapticsRelay</Product>
<AssemblyVersion>0.3.0</AssemblyVersion>
<FileVersion>0.3.0</FileVersion>
<Version>0.3.0</Version>
<PackageId>$(AssemblyName)</PackageId>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>false</PublishTrimmed>
<SelfContained>true</SelfContained>
</PropertyGroup>
<ItemGroup>
<Compile Remove="dev\**" />
<EmbeddedResource Remove="dev\**" />
<None Remove="dev\**" />
<Page Remove="dev\**" />
</ItemGroup>
<ItemGroup>
<None Remove="bhaptics-logo.png" />
<None Remove="bhaptics-relay-icon.ico" />
<None Remove="bhaptics.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fleck" Version="1.2.0" />
<PackageReference Include="Fody" Version="6.9.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="9.0.6" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="bhaptics-logo.png">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="bhaptics-relay-icon.ico">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<None Update="bhaptics.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="bHapticsRelay_Test_Suite.py">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="bHapticsRelay_Test_Suite.pyw">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="bhaptics_library.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="config.cfg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="DefaultConfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="LICENSE">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="logname.log">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="logname.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="OpenMW.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="README.md">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Readme.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>