Creating app package from command line using msbuild

前端 未结 1 1409
青春惊慌失措
青春惊慌失措 2021-01-12 20:18

I can create App Packages from Visual Studio 2013 using the wizard.

The result file is MyProject_Win8_1.1.1.3_x86_x64_arm_bundle.appxupload, which

相关标签:
1条回答
  • 2021-01-12 20:47

    Try this command line :

    MSBuild mysolution.sln  /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="x86|x64|ARM"
    
    0 讨论(0)
提交回复
热议问题