我无法通过 Zebble 构建生成的 UWP 项目

I can not build the generated UWP project by Zebble

我使用 Zebble Extension 为 Visual Studio 创建了一个示例项目。 相关项目创建成功,但不幸的是,当我尝试编译 UWP 项目时,构建过程失败并出现以下错误:

Validation error. error C00CE169: App manifest validation error: The app manifest must be valid as per schema: Line 10, Column 13, Reason: '$solutionname$' violates pattern constraint of '[-.A-Za-z0-9]+'. The attribute 'Name' with value '$solutionname$' failed to parse.

我该如何解决?

该错误意味着在 Visual Studio.

中创建新项目时,Zebble 扩展无法 运行 Zebble CLI 工具 (Zebble.exe)

通常这是因为安全限制。所以解决这个问题,你应该:

  • 运行 Visual Studio 以管理员身份创建新项目。

注意:

或者,您可以将 Visual Studio 进程 (devenv.exe) 配置为始终 运行 作为管理员。这可以方便地防止将来出现其他问题(例如调试进程)使用:

Can you force Visual Studio to always run as an Administrator in Windows 8?

(也适用于 Windows 10)