I am preparing an appxupload package file for submission to Microsoft Store using Windows Application Packaging Project in Visual Studio 2017. In my solution, there are following projects.
- MyApp (WPF desktop application project)
- MyApp.Packager (Windows Application Packaging Project)
When I create an appxupload file by "Create App Packages" function, the name of the output appxupload file is automatically set to the following format.
MyApp.Packager_1.0.0.0_AnyCPU_bundle.appxupload
However, I would like to change this format to the following:
MyApp_1.0.0.0_AnyCPU_bundle.appxupload
I have searched the settings of the packaging project to set the output file name but I couldn't find it. So, is it possible to change the output file name by specifying it in some settings files? Or is there any workaround for this purpose?