Issue: When building a UWP using the VSTS build service no .appxupload
file for store submissions is created.
What I did: I created a build definition using the Universal Windows App template that contains 4 build steps. Apart from setting the repository to my external Git repository I didn't change anything.
After the build finishes I only have the _Test
folder in my drop. No .appxupload
file.
What I tried so far:
- According to Build your Universal Windows Plattform app I have to add the
UapAppxPackageBuildMode
(set toCI
) switch to the MSBuild arguments. I did it exactly as shown there. However, neither the.appxupload
nor the_Test
folder are created but the build step itself completes successfully. (Actually, theAppxPackages
folder that is specified by default using theAppxPackageDir
switch is missing, too) - I tried running the
Create App Packages...
option from within Visual Studio. This results in both, the.appxupload
and_Test
folder. - [Update] I found another switch to try at the MSBuild arguments which is
AppxPackageIsForStore
(set totrue
). This will generate the_Test
folder but still not.appxupload
package.