UsbSerialForAndroid
UsbSerialForAndroid copied to clipboard
Dotnet6 MAUI support
It would be great to have a version that supports Dotnet6 with MAUI. I could get it to work with a new project file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-android</TargetFrameworks>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>
<ReleaseVersion>0.0.0.1</ReleaseVersion>
</PropertyGroup>
</Project>
A NuGet version would be even better. If you need any help, happy to make a PR to get this going.