Hello there,

I am trying to create a setup package for my Windows Mobile application that I have created in Visual Studio 2005 using C#.

I have followed the tutorial here, and I have been able to create the setup application, and my application installs, however, I have also to install the .Net Compact Framework 2.0 and SQL Server 2005 Compact. In order to do this, I have tried to include these additional CAB files in a setup.ini file, however, the actual installations of the framework and the sql server does not seem to happen. Here are the contents of my setup.ini file:

[CEAppManager]
Version = 1.0
Component = MyApp


[MyApp]
Description = MyApp
Uninstall = {CC9EA2BC-BCFA-4DEA-8F5F-1E1032567673}
CabFiles = NETCFv2.wm.armv4i.CAB,sqlce30.ppc.wce5.armv4i.CAB,MyApp.cab

Does this look ok to everyone? Is there anything I am missing?

As stated, the actual installation of my application installs, but not the .net framework or sql server!

Thanks

Gary