Initial commit

This commit is contained in:
2026-03-29 14:42:20 +02:00
commit 747bec985d
10 changed files with 1618 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>VersaGUI</AssemblyName>
<RootNamespace>VersaGUI</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- Serieller Port (.NET Core/5+ benötigt explizites Paket) -->
<PackageReference Include="System.IO.Ports" Version="7.0.0" />
<!-- WMI-Zugriff für COM-Port-Erkennung per VID/PID -->
<PackageReference Include="System.Management" Version="7.0.2" />
</ItemGroup>
</Project>