I have installed newer versions of dotnet on my Windows 11 system running Visual Studio Community 2022, but when I try to update one of my Windows Application projects from the Projects -> Options dialog the only ones that show up in the Target Framework drop down are .NET Framework 4.7.2 and 4.8. In the same drop down there is an option to install other frameworks and I have tried that. I have loaded both 6.0 and 8.0. They show up under C:Program Filesdotnet, but do not seem to be available to my project. So, is VS Community limited in some way? I tried update the .csproj file using Notepad, but VS did not like that.
Thanks for your time.
Installed newer versions of dotnet from microsoft website.
6
Visual Studio Community 2022 contains more than these two projects model:
Windows Application (.Net Framework)
and Windows Application.
It seems that your Windows Application projects are the first.
In my opinion,you can add the second model project and paste your codes from the first model project to the second model project.
2