tags:

views:

80

answers:

2

i have a project in visual studio. I want to know .net framework version of it? where can i look at?

+7  A: 

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, all projects use .Net 2.0, 3.0, or 3.5; you can change the version in Project Properties
  • In 2010, all projects use .Net 2.0, 3.0, 3.5, or 4.0; you can change the version in Project Properties
SLaks
i m in 2008. but dont know which version is used by current project.
Novice Developer
So go to Project Properties for the current project.
SLaks
i got you. i can see version.
Novice Developer
Then you should accept this answer by clicking the hollow check.
SLaks
+4  A: 
  • VB

Project Properties -> Compiler Tab -> Advanced Compile Options button

  • C#

Project Properties -> Application Tab

Jonathan Allen