Changing reference from 1.0 framework dll's to 1.1 framework dll

  • Thread starter Thread starter DotNetJunkies User
  • Start date Start date
D

DotNetJunkies User

Hello,

I am developing an application using ASP.NET and ORACLE. Initially I loaded Visula studio . NET 1.0 framework and later updated it Framework 1.1 . So, now, I got two different directories "WINNT\Microsoft.NET\Framework\v1.0.3705" and "WINNT\Microsoft.NET\Framework\v1.1.4322", in my system holding dll's. At present, this application is referencing to 1.0 Frameworks dlls (e.g. system.dll,system.data.dll etc). But, now I want to change this reference to access dl's from 1.1 framework so that I can use other useful methods and features. For this, When I removed the reference of existing dll and then tried to add NEW reference of dll's from 1.1 framework directory, I am getting MANY compilation error. Could any one help me to resolve this problem? My goal is to change the reference of dll's to access 1.1 framework's dll instead of 1.0.

Regards,
Ajay
 
Ajay,

Upgrade to Visual Studio .NET 2003, or compile with the v1.1 command
line compiler.



Mattias
 
Back
Top