appxupload package not being generated. Only test package is being generated

余生颓废 提交于 2019-12-07 12:46:25

问题


I am developing a universal windows app. When I try to create package using Store->Create App packages, it is creating only test packages. In AppPackages directory, I can find only one folder with _test.

How do I ensure that .appxupload package gets created that can be uploaded to windows store.


回答1:


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

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


来源:https://stackoverflow.com/questions/32728729/appxupload-package-not-being-generated-only-test-package-is-being-generated

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!