How to find the .NET framework version of a Visual Studio project?
I have a project in Visual S开发者_如何学Ctudio. How can I find out which .NET Framework version it's for?
It depends which version of Visual Studio:
- In 2002, all projects use .Net 1.0
- In 2003, all projects use .Net 1.1
- In 2005, all projects use .Net 2.0
- In 2008, projects use .Net 2.0, 3.0, or 3.5; you can change the version in Project Properties
- In 2010, projects use .Net 2.0, 3.0, 3.5, or 4.0; you can change the version in Project Properties
- In 2012, projects use .Net 2.0, 3.0, 3.5, 4.0 or 4.5; you can change the version in Project Properties
Newer versions of Visual Studio support many versions of the .Net framework; check your project type and properties.
VB Proj
Project Properties -> Compiler Tab -> Advanced Compile Options button
C# Proj
Project Properties -> Application Tab
The simplest way to find the framework version of the current .NET project is:
- Right-click on the project and go to "Properties."
- In the first tab, "Application," you can see the target framework this project is using.
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>
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 .
With Respect to .NET Framework 4.6 and Visual Studio 2017 you can take the below steps:
- On the option bar at the top of visual studio, select the 4th option "Project" and under that click on the last option which says [ProjectName]Properties.Click on it & you shall see a new tab has been opened.Under that select the Application option on the left and you will see the .NET Framework version by the name "Target Framework".
- Under Solution Explorer's tab select your project and press Alt + Enter.
- OR simply Right-click on your project and click on the last option which says Properties.
- In Solution Explorer, open the context menu for the project that you want to change, and then choose Properties.
- In the left column of the Properties window, choose the Application tab.
- In the Target Framework list, you will see the current version of .NET framework on the project. You may also change the framework from there.
It's as easy as in your Visual studio.
- go to the 4th menu option on top, 'website'.
- under websites go to option, 'start options'.
- under start options, go to 'build' option.
- change the target framework there to what so ever framework.
Open packages.config file all detail about packages and their versions which are installed into the current project listed there. follow given shot
here all installed packages
You can't change the targeted version of either Windows or the .NET Framework if you create your project in Visual Studio 2013. That option is not available anymore.
Look that link from Microsoft: http://msdn.microsoft.com/en-us/library/bb398202.aspx
Updating for 2022...
refer to: https://learn.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. |
精彩评论