I am looking for a more user friendly way to make an installer for my UWP application. I do not want to distribute through the repository, and I know that you need to set the developer option to enable application downloads.
Is it possible, in C #, to mimic the execution of a PowerShell script that deploys an appx package to a system? And if so, how does it work if you want to upgrade the appx package instead of a new installation?
It seems a little strange that my users must manually execute the powershell script command to install the application. Therefore, I would like to create an installer.
EDIT: for development, I'm looking for a C # way to install the appx package. I do not want to use any command line / external tools
thanks
source share