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>
|
2020-11-03 14:24:46 +00:00
|
|
|
|
<ApplicationIcon>logo.ico</ApplicationIcon>
|
2020-08-28 19:39:09 +01:00
|
|
|
|
</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-27 20:07:26 +00:00
|
|
|
|
<PackageReference Include="CUE.NET" Version="1.2.0.1" />
|
2020-10-26 17:20:01 +00:00
|
|
|
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
|
2020-11-03 14:24:46 +00:00
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="5.0.0-rc.2.20475.5" />
|
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>
|
|
|
|
|
|
2020-11-03 14:24:46 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System.Windows.Forms">
|
|
|
|
|
<HintPath>..\..\..\..\..\..\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App\3.1.6\System.Windows.Forms.dll</HintPath>
|
|
|
|
|
</Reference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-10-27 20:07:26 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Views\Tabs\CUEDeviceTabView.xaml.cs">
|
|
|
|
|
<SubType>Code</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-11-03 14:24:46 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="logo.ico">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-10-27 20:07:26 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Page Update="Views\Tabs\CUEDeviceTabView.xaml">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-08-28 19:39:09 +01:00
|
|
|
|
</Project>
|