RGBController/RGBController2/RGBController2.csproj

29 lines
878 B
XML
Raw Normal View History

2020-08-28 19:39:09 +01:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
2020-10-26 17:20:01 +00:00
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
2020-08-28 19:39:09 +01:00
<ItemGroup>
2020-10-25 19:52:14 +00:00
<Compile Remove="LightingModes\**" />
<EmbeddedResource Remove="LightingModes\**" />
<None Remove="LightingModes\**" />
<Page Remove="LightingModes\**" />
</ItemGroup>
<ItemGroup>
2020-10-26 17:20:01 +00:00
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
2020-10-25 19:52:14 +00:00
<PackageReference Include="System.IO.Ports" Version="4.7.0" />
2020-08-28 19:39:09 +01:00
</ItemGroup>
</Project>