avoid CF 2 application installation message

I

iamjuan

Hello:

I'm installing a CF1.1 developed application on a device that has
CF2.0. The installation and the compatibility of the developed program
is good, but when i'm installing I get a message indicating that the
application needs the compact framework runtime to works propertly.
How can avoid this message when installing my CF1 application on a
device with CF2.0?

Thanks,

Juan
 
M

Marc Ambrosius

I'm installing a CF1.1 developed application on a device that has
CF2.0. The installation and the compatibility of the developed program
is good, but when i'm installing I get a message indicating that the
application needs the compact framework runtime to works propertly.
How can avoid this message when installing my CF1 application on a
device with CF2.0?
1. You can install CF1 on the same device as well. Both frameworks can be
installed side-by-side.
2. Wceload (the program that installs CAB-files on the device) has the
parameter /noui to avoid messages:
http://msdn2.microsoft.com/en-US/library/ms933760.aspx
3. You can create a config file for your application (same directory, same
name with .config like application.exe.config):
<configuration>
<startup>
<supportedRuntime version="v2.0.7045"/>
</startup>
</configuration>Marc
 

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