I have a .NET Core class library, targeting .NET Standard 1.6.
I want to make a small Windows app with a GUI I can use to test various capabilities of my class library. At this point, I don't particularly care if it's WPF or Universal.
I've tried adding both project types (WPF and UWP) to the solution using the available templates in Visual Studio 2017 RC, but when I try to build either I get compatibility errors e.g.
.NETStandard,Version=v1.6... cannot be referenced by a project that targets UAP,Version=v10.0.10586
.NETStandard,Version=v1.6... cannot be referenced by a project that targets .NETFramework,Version=v.4.5.2
Which makes sense, but I can't figure out how to make any sort of GUI app at all that can use a .NET Core class library.
