How to know the .net version of a windows application just looking the code?
-
Hi, I have a .net windows application. I just want to know the version of the project just looking to the code. Where can I get some idea about this/ Please help regarding this. Thanks..
--Krushna Chandra Sahu prfkrushna@gmail.com
-
Hi, I have a .net windows application. I just want to know the version of the project just looking to the code. Where can I get some idea about this/ Please help regarding this. Thanks..
--Krushna Chandra Sahu prfkrushna@gmail.com
Well, if you're using VS2002, it's C#1.0. 2003, it's 1.1. 2005, it's 2.0, or 3.0. 2008, it's 2.0 or 3.5. 3.0 was a patch to 2.0.
Christian Graus Driven to the arms of OSX by Vista.
-
Hi, I have a .net windows application. I just want to know the version of the project just looking to the code. Where can I get some idea about this/ Please help regarding this. Thanks..
--Krushna Chandra Sahu prfkrushna@gmail.com
Load the latest version (i.e. 3.5) and it will take care of all the older versions. You need not worry what version is required to run your application. Cheers Karmu
-
Load the latest version (i.e. 3.5) and it will take care of all the older versions. You need not worry what version is required to run your application. Cheers Karmu
KSuthar wrote:
Load the latest version (i.e. 3.5) and it will take care of all the older versions
Uhhh...no, it won't. .NET 3.0 and 3.5 are based on the .NET 2.0 CLR. Both are a bunch of extensions to .NET. It does not install .NET 1.0 or 1.1. Though, on a completely patched up installation of Vista, you get .NET 1.0, 1.1, 2.0 and 3.0 installed for you.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
Well, if you're using VS2002, it's C#1.0. 2003, it's 1.1. 2005, it's 2.0, or 3.0. 2008, it's 2.0 or 3.5. 3.0 was a patch to 2.0.
Christian Graus Driven to the arms of OSX by Vista.
Thank you for reply. Let me make you clear about my problem. Actually I don't know about the version of my existing application. I'm just looking into the code. Can I find something any clue/information while opening the codes in notepad, so that I can know the version like 1.0/1.1/2.0 etc or 2002/2003/2005 like that.
--Krushna Chandra Sahu prfkrushna@gmail.com
-
KSuthar wrote:
Load the latest version (i.e. 3.5) and it will take care of all the older versions
Uhhh...no, it won't. .NET 3.0 and 3.5 are based on the .NET 2.0 CLR. Both are a bunch of extensions to .NET. It does not install .NET 1.0 or 1.1. Though, on a completely patched up installation of Vista, you get .NET 1.0, 1.1, 2.0 and 3.0 installed for you.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Thank you for reply. Let me make you clear about my problem. Actually I don't know about the version of my existing application. I'm just looking into the code. Can I find something any clue/information while opening the codes in notepad, so that I can know the version like 1.0/1.1/2.0 etc or 2002/2003/2005 like that. Thank you.
--Krushna Chandra Sahu prfkrushna@gmail.com
-
Thank you for reply. Let me make you clear about my problem. Actually I don't know about the version of my existing application. I'm just looking into the code. Can I find something any clue/information while opening the codes in notepad, so that I can know the version like 1.0/1.1/2.0 etc or 2002/2003/2005 like that. Thank you.
--Krushna Chandra Sahu prfkrushna@gmail.com
No, you can't. There's nothing that will tell you which version of the .NET Framework the app will bind to by looking at it in Notepad. Nor have I heard of any utility that will do it either.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
No, you can't. There's nothing that will tell you which version of the .NET Framework the app will bind to by looking at it in Notepad. Nor have I heard of any utility that will do it either.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Thank you...
--Krushna Chandra Sahu prfkrushna@gmail.com