Error en la aplicación Windows Metro Style con la biblioteca de datos de Google API

OS: Vista previa del consumidor de Windows 8
IDE: Visual Studio 11 Beta

Creo una aplicación en blanco (estilo Windows Metro).
Y añada el código de muestra de Google Doc API. (Está abajo)
Se produce un error de compilación.No se puede encontrar el tipo System.ComponentModel.ExpandableObjectConverter en el módulo System.dll)

Pero cuando creo una aplicación de consola (Windows), no se producen errores de compilación y la API de Google Doc funciona bien.

¿Algunas ideas?

<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>

Respuestas a la pregunta(1)

Su respuesta a la pregunta