Installing my program on Windows CE 5

I am developing an application for Windows CE 5, and I was wondering what the easiest way to install the application on CE 5 devices would be.

The inclusion of "publishing" in VS8 is created by the installer, but this installer is not compatible with CE 5.

What is a simple and efficient way to install my applications on Windows CE 5?

Edit: Follow up here.

+2
source share
2 answers

An easy way is to simply add a new deployment project to an existing solution.

Right-click your solution and choose Add> New Project.

add new project

Go to the Other project types section, select the Smart Device CAB project.

Cab project

Right-click the new project, including all the files that your project uses, then build it .

UPDATE:

Be sure to add the output of the project!

project output

+3
source

For Windows CE and Windows, mobile applications use a CAB file, this link describes how to create a CAB file.

+1
source

Source: https://habr.com/ru/post/1487010/


All Articles