Calling assemblies built with different framework version

  • Thread starter Thread starter Alejandro.Feiges
  • Start date Start date
A

Alejandro.Feiges

Hello,

I have an assembly that works only with framework 1.1.

Then I built an application using Framework 2.0 beta 2.

How can I tell the FWK 2.0 application that the called assembly must
run under 1.1 runtime?

Is there any way to configure the assemblies on that way?

Thanks in advance for your help,
Alejandro
 
I have an assembly that works only with framework 1.1.

Why?

How can I tell the FWK 2.0 application that the called assembly must
run under 1.1 runtime?

There's no way you can execute an assembly built for v2.0 under the
v1.x runtime.


Mattias
 
I think one process can have only 1 version of the runtime loaded in its
space. So what you are asking is not possible

----------------
-Atul, Sky Software http://www.ssware.com
Shell MegaPack For .Net & ActiveX
Windows Explorer GUI Controls
&
Quick-Launch Like Appbars, MSN/Office2003 Style Popups,
System Tray Icons and Shortcuts/Internet Shortcuts
 
Mattias, Atul,

Thanks for your answers. The only way I found was to create a
Webservice as a wrapper for the .NET 1.1 assembly.

Regards,
Alejandro
 
Back
Top