Aplicativo do Windows Metro Style ocorre com a biblioteca da API de dados do Google

SO: Windows 8 Consumer Preview
IDE: Visual Studio 11 Beta

Eu crio um aplicativo em branco (estilo Metro do Windows).
Adicione o código de amostra da API do Google Doc. (Está abaixo)
Ocorre erro de compilação.Não é possível encontrar o tipo System.ComponentModel.ExpandableObjectConverter no módulo System.dll)

Mas quando eu crio um aplicativo de console (Windows), não ocorrem erros de compilação e a API do Google Doc funcionando bem.

Alguma ideia?

<code>using System;
using Google.GData.Client;
using Google.GData.Documents;

namespace MyDocumentsListIntegration
{
  class Program
  {
    static void Main(string[] args)
    {
      DocumentsService service = new DocumentsService("MyDocumentsListIntegration-v1");

      // TODO: Authorize the service object for a specific user (see Authorizing requests)

      // Instantiate a DocumentsListQuery object to retrieve documents.
      DocumentsListQuery query = new DocumentsListQuery();

      // Make a request to the API and get all documents.
      DocumentsFeed feed = service.Query(query);

      // Iterate through all of the documents returned
      foreach (DocumentEntry entry in feed.Entries)
      {
        // Print the title of this document to the screen
        Console.WriteLine(entry.Title.Text);
      }
    }
  }
}
</code>

questionAnswers(1)

yourAnswerToTheQuestion