Framwework 2

G

Guest

I have installed .NET Framework version 2.0 beta in my computer. Previously i
had .NET Framework version 1.1. If i check Administrative tools both version
are showing up. How do I find out under which framework version my
application is running or how do i configure to run an application in a
particular framework
 
M

Mattias Sjögren

How do I find out under which framework version my
application is running
System.Environment.Version


or how do i configure to run an application in a
particular framework

By default it runs with the version it was compiled against, if that
is installed. You can override that with the <supportedRuntime>
element in a the application config file.


Mattias
 
G

Guest

Thanks Mattias.
But When i open Visual studio 2003, i am not able to use the .NET framework
version 2.0 APIs. Is it possible to configure visual studio for this.
 
M

Mattias Sjögren

But When i open Visual studio 2003, i am not able to use the .NET framework
version 2.0 APIs. Is it possible to configure visual studio for this.

No, you need VS 2005 to target .NET v2.0.


Mattias
 
M

Mrinal Kamboj

Idea is VS.net 2003 is binded with assembly versions pertaining
framework 1.1 viz : mscorlib.dll , mscoree.dll etc. , so there's no way
you can make it use 2.0 assemblies , else :

" Who will buy VS.net 2005 " :)

Mrinal
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top