- Principal.cs/Designer.cs: WinForms KVM host app (.NET 8) Global mouse/keyboard hooks, edge detection, BT serial protocol, clipboard paste via Ctrl+V, PT-BR ABNT2 layout translation - KVMote.ino: Arduino Leonardo sketch (HC-06 BT, USB HID) Non-blocking state machine, LED RGB feedback, full protocol support - KVMote.csproj/sln: project files with System.IO.Ports NuGet - .gitignore: C#/Visual Studio standard exclusions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
19 lines
504 B
XML
19 lines
504 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<AssemblyName>KVMote</AssemblyName>
|
|
<RootNamespace>KVMote</RootNamespace>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|