I need to add Windows Hello to my C# .NET 8 WinForms project. I found a solution here for .Net Framework, but I am using .NET 8. When I try this solution anyways, I get the following error:
NETSDK1135: SupportedOSPlatformVersion 10.0.26100.0 cannot be higher than TargetPlatformVersion 7.0.
I installed the latest version of this package as per the solution linked above, and notice the version number:
Adding
<PropertyGroup>
<TargetPlatformVersion>10.0.26100.0</TargetPlatformVersion>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
to the .csproj file just results in more errors:
I installed the 10.0.26100.0 SDK here.