Application must use framework 1.0/1.1 not 2.0

T

Tosch

My application is built with VS2002. On some systems the users have installed framework 2.0.
How can I force my application to use framework 1.0? One of the components I use won't work properly with framework 2.0

tosch
 
R

rajavel.jp

Hi,

Create a text file with file name <appname>.exe.config with the
following xml,

<configuration>
<startup>
<supportedRuntime version="v2.0.50610"/>
</startup>
</configuration>

In supportedRuntime specify which version you want to use.
 

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