I had a default installation of VS Community 2019. Im trying to write a console app that automates some things my website is doing so I created a console project with the default settings -- VS automatically selected .NET Core 3.0. As I began began writing code, I needed to add a reference to System.Web. Other posts say that I need to target .NET Framework rather than .NET core so I head over to the Visual Studio SDKs page and install v4.8 Developer Pack. I reboot my computer and when I go back to the console app properties window, I still dont have .NET Framework in my Target framework dropdown. Re-running the installer results in it saying that it already exists.
How do I get .NET Framework to appear in my Target Framework drop down? Or better yet, how do I reference System.Web in my console app?
Note: There are many earlier posts that reference VS 2010 or 2012 that are no longer relevant to 2019.