I have a project in Visual Studio. How can I find out which .NET Framework version it\'s for?
The simplest way to find the framework version of the current .NET project is:
You can also search the Visual Studio project files for the XML tag RequiredTargetFramework. This tag seems to exist on .NET 3.5 and higher.
For example: <RequiredTargetFramework>3.5</RequiredTargetFramework>
It depends which version of Visual Studio:
Newer versions of Visual Studio support many versions of the .Net framework; check your project type and properties.