I have a project in Visual Studio. How can I find out which .NET Framework version it's for?
I have a project in Visual Studio. How can I find out which .NET Framework version it's for?
With Respect to .NET Framework 4.6 and Visual Studio 2017 you can take the below steps:
Open packages.config file all detail about packages and their versions which are installed into the current project listed there. follow given shot
Updating for 2022...
refer to: https://docs.microsoft.com/en-us/dotnet/core/install/windows?tabs=net60
| .NET SDK version | Visual Studio version |
|---|---|
| 6.0 | Visual Studio 2022 version 17.0 or higher. |
| 5.0 | Visual Studio 2019 version 16.8 or higher. |
| 3.1 | Visual Studio 2019 version 16.4 or higher. |
| 3.0 | Visual Studio 2019 version 16.3 or higher. |
| 2.2 | Visual Studio 2017 version 15.9 or higher. |
| 2.1 | Visual Studio 2017 version 15.7 or higher. |