21 lines
795 B
XML
21 lines
795 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<ApplicationVisualStyles>true</ApplicationVisualStyles>
|
|
<ApplicationUseCompatibleTextRendering>false</ApplicationUseCompatibleTextRendering>
|
|
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
|
|
<LangVersion>default</LangVersion>
|
|
<!-- <ApplicationDefaultFont>Microsoft Sans Serif, 8.25pt</ApplicationDefaultFont> -->
|
|
<!-- <AllowUnsafeBlocks>true</AllowUnsafeBlocks> -->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |