It's the same visual studio 2017 instalation. I've already downloaded and installed the net framework 4.6.2 developer pack from here
Regards!
When you created the C# library, I assume you selected a .Net Standard Library instead of a Windows Classic Desktop library. You can modify the csproj
file by hand and change the target framework to .Net 4.6.2 like so:
<TargetFramework>net462</TargetFramework>
Once you do that, the UI should updated in the Project Properties screen.