我试图打开Package.appxmanifest与应用程序报表设计(右击文件->打开与.->应用程序报表设计),我得到了以下错误:
The file cannot be opened with the selected editor. Please choose another editor.这是一个刚刚创建的2015 RC (14.0 D14REL)作为管理员。
奇怪的是,当我创建Windows8.1Universal时,清单在设计上正确打开。
我怎么才能让它起作用呢?
发布于 2015-07-03 02:24:09
我想出了个办法。
我需要这个来增加一个背景任务。
因此,在我的Package.appxmanifest中,我添加了以下内容:
<Extensions>
<Extension Category="windows.backgroundTasks" EntryPoint="BackgroundTasks.UpdateTask">
<BackgroundTasks>
<Task Type="timer" />
</BackgroundTasks>
</Extension>
</Extensions>在<Aplication>内部
https://stackoverflow.com/questions/31196244
复制相似问题