我使用Zebble Extension for 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.
我该如何解决?
答案 0 :(得分:2)
该错误意味着在Visual Studio中创建新项目时,Zebble扩展无法运行Zebble CLI工具(Zebble.exe)。
通常这是因为安全限制。所以解决这个问题,你应该:
注:的
或者,您可以将Visual Studio进程(devenv.exe)配置为始终以管理员身份运行。这可以很方便地使用以下方法来防止将来出现其他问题(例如调试进程):
Can you force Visual Studio to always run as an Administrator in Windows 8?
(也适用于Windows 10)