I have a completed C# Visual Studio project but I am not able to open it due to version issue of the Visual Studios.
I have tried using VS2005 and VS2010, but both are unable to open the project.
I met errors while converting the project in VS2010 as well.
Is there any file which I could locate the version of VS used?
__
EDIT:
Thank you for the advices.
I have look through my csproj file as advised:
From what I see, the VS ver. used is most likely to be 2003 ver.
Please correct me if I am wrong.
解决方案
Look for the value in the tag in your project's csproj file.
+---------------------------+---------------+-----------+----------------+
|Product name | Codename | Version # | .NET Framework|
+---------------------------+---------------+-----------+----------------+
| Visual Studio 4.0 | N/A | 4.0.* | N/A |
| Visual Studio 97 | Boston | 5.0.* | N/A |
| Visual Studio 6.0 | Aspen | 6.0.* | N/A |
| Visual Studio .NET (2002) | Rainier | 7.0.* | 1 |
| Visual Studio .NET 2003 | Everett | 7.1.* | 1.1 |
| Visual Studio 2005 | Whidbey | 8.0.* | 2.0, 3.0 |
| Visual Studio 2008 | Orcas | 9.0.* | 2.0, 3.0, 3.5 |
| Visual Studio 2010 | Dev10/Rosario | 10.0.* | 2.0 – 4.0 |
| Visual Studio 2012 | Dev11 | 11.0.* | 2.0 – 4.5.2 |
| Visual Studio 2013 | Dev12 | 12.0.* | 2.0 – 4.5.2 |
| Visual Studio 2015 | Dev14 | 14.0.* | 2.0 – 4.6 |
+---------------------------+---------------+-----------+----------------+