problem with .net framework 2.0 and 1.1

B

b

I have an application that runs a DLL written in Delphi .net.
My Dll runs well only on .net framework 1.1 and NOT 2.0.
The problem is that my main application runs few DLLs some need to run
on framework 1.1 and some on 2.0 - so I cant specify on the exe.config
to run on 1.1 (<supportedRuntime>) - b.c then other dlls wont run
well.

Is there is a way to specify that only a specific dll will run on the
..net framework 1.1 and not 2.0?

Thanks for any help
b
 
G

Guest

You will have to wrap it with some form of interface. Of the many ways to do
this, Remoting/Web Services is your best option. This adds a bit of perf
weight, but it allows you to run both Frameworks side-by-side in a single app
without kludging up your .NET install.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

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