-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhid-sharp.csproj
More file actions
27 lines (23 loc) · 739 Bytes
/
Copy pathhid-sharp.csproj
File metadata and controls
27 lines (23 loc) · 739 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>hid_sharp</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nlog" Version="5.3.3" />
</ItemGroup>
<ItemGroup>
<None Update="x64\hidapi.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="x64\hidapi.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="x64\hidapi.pdb">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>