Windows Phone アプリを作成しようとしているとき。Google カレンダーを使いたいのですが、フレームワークのインストール方法がわかりません。このリンクのGoogleの例に従っています:
https://developers.google.com/google-apps/calendar/setup
次のコマンドでパッケージマネージャーコンソールを使用しました
PM> Install-Package Google.Apis.Calendar.v3 -Pre
そしてすべてうまくいきます。私がこれを使用するとき:
using Google.Apis.Authentication;
using Google.Apis.Authentication.OAuth2;
using Google.Apis.Calendar.v3;
using Google.Apis.Calendar.v3.Data;
実行時エラーが発生します。名前空間が存在しないと言う0Auth2で。次のコードを使用して、パッケージ マネージャー コンソールを再度使用しようとしています。
PM> Install-Package Google.Apis.Authentication -Pre
そして、私はこのメッセージを受け取ります:
Install failed. Rolling back...
Install-Package : Could not install package 'Google.Apis.Authentication 1.5.0-beta'. You are trying to install this package into a project that targets
'Silverlight,Version=v4.0,Profile=WindowsPhone71', but the package does not contain any assembly references or content files that are compatible with that
framework. For more information, contact the package author.
At line:1 char:1
+ Install-Package Google.Apis.Authentication -Pre
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand