vue-java-tutorials/CSharp/SerialPort/Base-2-Window/Base-2-Window.csproj

23 lines
699 B
XML
Raw Normal View History

2025-06-23 22:26:07 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>Base_2_Window</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
2025-06-23 23:05:34 +08:00
<ItemGroup>
<Reference Include="System.IO.Ports">
<HintPath>..\..\..\..\..\..\..\software\Plugins\nuget\system.io.ports\5.0.1\ref\netstandard2.0\System.IO.Ports.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.IO.Ports" Version="6.0.0"/>
</ItemGroup>
2025-06-23 22:26:07 +08:00
</Project>