|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
problem with .net framework 2.0 and 1.1I 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 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. -- Show quoteGregory A. Beamer MVP; MCP: +I, SE, SD, DBA *************************** Think Outside the Box! *************************** "b" wrote: > 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 > > |
|||||||||||||||||||||||