-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCockpitHardwareHUB_v2.csproj
36 lines (31 loc) · 1.15 KB
/
CockpitHardwareHUB_v2.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows7.0</TargetFramework>
<Nullable>disable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<StartupObject>CockpitHardwareHUB_v2.Program</StartupObject>
<SignAssembly>False</SignAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
<PackageReference Include="System.Management" Version="8.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="WASimCommander.WASimClient">
<HintPath>..\..\WASimCommander\DLL\WASimCommander.WASimClient.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="client_conf.ini">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Ijwhost.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>