I have a project in Visual Studio. How can I find out which .NET Framework version it's for?
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
Simple Right Click and go to Properties Option of any project on your Existing application and see the Application option on Left menu and then click on Application option see target Framework to see current Framework version .
It's as easy as in your Visual studio.
The simplest way to find the framework version of the current .NET project is:
Project Properties -> Compiler Tab -> Advanced Compile Options button
Project Properties -> Application Tab
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.