I'm working on a WPF C# .NET project where I am utilizing some Windows 8.1 specific functionality by using the
<TargetPlatformVersion>8.1</TargetPlatformVersion>
in my .csproj. Ideally I would like to continue providing support to my non Windows 8.1 customers.
What is the best way to support Windows 8.1 specific functionality while still creating an exe compatible with older versions of Windows (.NET 4.0).
Thanks!