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
iamjuan@gmail.com wrote: > 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