Running applications developed using framework 1.1 after installing framework 2.0

F

Feroz

Hello everyone,

We've an application developed using framework 1.1 and it's been
working great. Now when we install framework 2.0 besides 1.1, the
application runs using 2.0 and blows up with some inter-op issues.

My question is, is there anyway to force the application to run using
the 1.1 framework?

Thanks for your responses in advance.

Feroz.
 
W

William Stacey [MVP]

I seem to remember (on Channel9) that there is switch in VS2005 that you can
force 1.1. Think that requires a recompile using VS2005 however. Not sure
if there is simple switch or something you can set in the reg or other.
 
W

Willy Denoyette [MVP]

Yes, set the required runtime version in your application config file or use
policy files.

This ...
<configuration>
<startup>
<requiredRuntime version="v1.1.4322" safemode="true"/>
</startup>
</configuration>

will force the loading of the v1.1 runtime for your application.

Willy.
 

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