1

I am following this article: https://msdn.microsoft.com/en-us/windows/uwp/packaging/install-universal-windows-apps-with-the-winappdeploycmd-tool to sideload an app on a phone.

I am having trouble understanding what is meant by .appx file.

WinAppDeployCmd install -file "Downloads\MyApp.appx" -ip 192.168.0.1 -pin A1B2C3

I creqate dhte app package but searching the app folder for .appx files does not yield "myapp".appx.

Thank you.

4

1 回答 1

1

.appx 文件与 Microsoft Windows 8 和 Windows Phone 8.1 操作系统中引入的 AppX 应用程序分发文件格式相关联。它现在用于 Windows 十系统。类似于 .xap 文件。要在 Visual Studio 项目中查找 .appx 文件,请转到 Documents/Visual Studio/Projects。打开您的项目文件夹,然后您可以找到您的 .appx 文件。

对于 Windows 8.1 应用商店应用,请参阅Windows 8.1 应用商店应用:在其他设备上安装和测试应用。对于 Windows 10 应用商店应用,请参阅Windows 10 应用程序部署工具

于 2016-08-20T22:27:39.063 回答