'.NET 6.0 not listed in VS2022 (17.1.3)
As far as I know VS2022 should support dotnet 6.0 framework and make it easily targetable... But for some reason VS2022 doesn't have framework target option for .NET 6.0 when I try to create WinForm App...
Only available frameworks are:
- .NET framework 2.0
- .NET framework 3.0
- .NET framework 3.5
- .NET framework 4.7.2
- .NET framework 4.8
I've been looking into this and I only found users have similar problem but their problems solution is based on their Visual Studio version since everyone with similar problem use/used vs2019...
If you have any idea how I can make .NET 6.0 targetable in Frameworks dropdown list I'd be very grateful.
Thanks in advance, Luke.
Solution 1:[1]
The difference between .NET and .NET Framework is that
Developers use the .NET Framework to create Windows desktop applications and server based applications..NET is used to create applications that could run on Windows, Linux and Mac. It does not support creating Windows desktop applications on platforms other than Windows.
.NET 5+ (including .NET Core) is the latest implementation and runs on any platform. .NET Framework is the original implementation of .NET, and runs only on Windows.
You can see this page.
If you want to migrate from .NET Framework to .NET you can refer to this.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
