It is the first time I develop UWP program, and now I have to setup it to an offline computer of the factory(Let me give the computer a name:C). I was under the illusion that setup a UWP program is as easy as the win32 program, but it turns out to be not.
I used the way as https://learn.microsoft.com/en-us/windows/uwp/packaging/create-appinstallerfile-vs said. But after I ran the appxbundle, it said that I need to setup a certificate for this app. I don't know what is the meaning and how to find a certificate for my app?
Finally, I found a stupid way that setup visual studio on C as first. Then copies the source solution to a removable disk. After doing this, open the source solution and runs on the local machine. With this, visual studio will automatically setup the UWP program to the computer. At last, remove the removable disk so that no one can find the source project and the program is OK now.
Whereas, although this stupid way works, it is troublesome if you need to update the program. So I am finding an easiest way to do this. Thank you.