Multiprocotol Terminalprogram (BAT)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MultiTerm/MultiTerm.Protocols/MultiTerm.Protocols.csproj

38 lines
1.2 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="UsbHid\hidapi.dll" />
<None Remove="UsbHid\hidapi.lib" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="UsbHid\hidapi.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<!-- directly to output folder, do not create subfolder UsbHid -->
<TargetPath>%(Filename)%(Extension)</TargetPath>
</EmbeddedResource>
<EmbeddedResource Include="UsbHid\hidapi.lib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<!-- directly to output folder, do not create subfolder UsbHid -->
<TargetPath>%(Filename)%(Extension)</TargetPath>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.1.0" />
<PackageReference Include="HidApi.Net" Version="0.3.0" />
<PackageReference Include="SerialPortStream" Version="2.4.1" />
<PackageReference Include="System.Net.Sockets" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
</Project>