1
0
mirror of https://github.com/furyfire/LEDNotifier.git synced 2024-09-19 14:42:15 +00:00
LEDNotifier/LEDNotifier.csproj

23 lines
661 B
XML
Raw Normal View History

2021-12-31 16:04:00 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<DebugType>none</DebugType>
<Configurations>Release</Configurations>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Deterministic>False</Deterministic>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HidSharp" Version="2.1.0" />
</ItemGroup>
</Project>