17 lines
449 B
XML
17 lines
449 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="System.Drawing.Common" Version="8.0.1" />
|
|||
|
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|