15

I am developing an app for Windows 8 on VS2012 using monoxna on C#.

The output .exe file does not run on double click. It displays the message

This application can only run in the context of an app container.

How can I generate a runable exe for that app?

4

1 回答 1

0

如果这是一个商店/UWP 应用程序,那么它只能通过 appx 包安装。通常这应该通过商店。

如果您不想(或不能)通过商店分发,那么您可以创建一个可以直接安装的包。

在 VS 中转到:项目 > 商店 > 创建应用程序包... > 并选择否为商店构建包

在您可以在机器上安装应用程序之前,您需要在该机器上启用开发人员功能:
设置 > 更新和安全 > 对于开发人员 > 选择:旁加载应用程序

然后只需运行使用包创建的 PowerShell 脚本来安装它。

资源:

https://stackoverflow.com/a/33669395/3850405

于 2020-12-04T10:23:11.127 回答