Unable to create appxupload package. Only a test package is produced.

I am developing a universal application for Windows. When I try to create a package using Store-> Create App, it only creates test packages. In the AppPackages directory, I can only find one folder with _test.

How to ensure that an .appxupload package is created that can be downloaded to the Windows repository.

+3
source share
1 answer

Look in your Projekt.csproj.user file if AppxPackageIsForStore set to true.

  <PropertyGroup> <ProjectView>ShowAllFiles</ProjectView> <AppxPackageIsForStore>True</AppxPackageIsForStore> <AppxShowAllApps>True</AppxShowAllApps> <AppxBuildConfigurationSelection>x86|x64|arm</AppxBuildConfigurationSelection> </PropertyGroup> 
0
source

All Articles