基于此演示文稿中的代码:http: //channel9.msdn.com/Series/MVA-Jump-Start/Building-Apps-for-Windows-Phone-8-Jump-Start-14-Maps-and-Location-在 Windows-Phone-8 中
...我尝试将“LocationTracking”添加到 WMAppManifest.xml,但没有显示的 xaml:
<Tasks>
<DefaultTask Name="_default" NavigationPage="MainPage.xaml">
<BackgroundExecution>
<ExecutionType Name="LocationTracking" />
</BackgroundExecution>
</DefaultTask>
</Tasks>
...也不是以下内容,类似于编译器似乎想要的东西:
<ExtendedTask>
<ExecutionType Name="LocationTracking" />
</ExtendedTask>
...会编译。
有人如何让这个工作?