Windows 对事件TaskScheduled使用未定义的关键字值1

Windows 对事件TaskScheduled使用未定义的关键字值1,windows,universal,Windows,Universal,调试我的universal Windows(8.1)应用程序时,我不时遇到以下错误: System.ArgumentException was unhandled _HResult=-2147024809 _message=Use of undefined keyword value 1 for event TaskScheduled. HResult=-2147024809 IsTransient=false Message=Use of undefined keyword

调试我的universal Windows(8.1)应用程序时,我不时遇到以下错误:

System.ArgumentException was unhandled
  _HResult=-2147024809
  _message=Use of undefined keyword value 1 for event TaskScheduled.
  HResult=-2147024809
  IsTransient=false
  Message=Use of undefined keyword value 1 for event TaskScheduled.
  Source=mscorlib
  StackTrace:
       at System.Diagnostics.Tracing.ManifestBuilder.GetKeywords(UInt64 keywords, String eventName)
       at System.Diagnostics.Tracing.ManifestBuilder.StartEvent(String eventName, EventAttribute eventAttribute)
       at System.Diagnostics.Tracing.EventSource.CreateManifestAndDescriptors(Type eventSourceType, String eventSourceDllName, EventSource source)
       at System.Diagnostics.Tracing.EventSource.EnsureInitialized()
       at System.Diagnostics.Tracing.EventSource.SendCommand(EventListener listener, Int32 perEventSourceSessionId, Int32 etwSessionId, EventCommand command, Boolean enable, EventLevel level, EventKeywords matchAnyKeyword, IDictionary`2 commandArguments)
       at System.Diagnostics.Tracing.EventSource.OverideEventProvider.OnControllerCommand(ControllerCommand command, IDictionary`2 arguments, Int32 perEventSourceSessionId, Int32 etwSessionId)
       at System.Diagnostics.Tracing.EventProvider.EtwEnableCallBack(Guid& sourceId, Int32 controlCode, Byte setLevel, Int64 anyKeyword, Int64 allKeyword, EVENT_FILTER_DESCRIPTOR* filterData, Void* callbackContext)
然后,我可以跳过此错误,并能够在调试模式下继续使用该应用程序,但当安装在设备上时,该应用程序将崩溃。 我寻找答案已经有一段时间了,但我在这里遇到的唯一答案是禁用对此类异常的破坏,这当然不是一个很好的答案

提前谢谢

编辑1:
好的,我有一个非常简单的示例项目,可以很容易地重现这个错误。我在Visual Studio 2013 Ultimate中创建了一个通用应用程序Blank应用程序,并在App.xaml.cs中添加了以下代码。 上面发布的异常是在wait行中提出的。 有人能帮我吗?这已经困扰了我好几个月了

public App()
{
  this.InitializeComponent();
  this.Suspending += this.OnSuspending;

  callService();
}

async public Task callService()
{
  string url = "http://eu.battle.net/api/d3/profile/bunnynut-2128/";
  HttpClient client = new HttpClient();
  string data = await client.GetStringAsync(url);
  client.Dispose();
}

好的,我有一个非常简单的示例项目,可以很容易地重现这个错误。我在Visual Studio 2013 Ultimate中创建了一个通用应用程序Blank应用程序,并在App.xaml.cs中添加了以下代码。我认为您尝试的工作太早了。等待应用程序被激活。