-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathFestivalInstrumentMapper.csproj
More file actions
27 lines (23 loc) · 936 Bytes
/
Copy pathFestivalInstrumentMapper.csproj
File metadata and controls
27 lines (23 loc) · 936 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>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>festivalinstrumentmapper.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Content Include="festivalinstrumentmapper.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Nefarius.Drivers.HidHide" Version="1.12.2" />
<PackageReference Include="Nefarius.Utilities.DeviceManagement" Version="3.18.1" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.49-beta">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>