パッケージマネージャーコンソールを使用する以外にC#ライブラリをインストールする方法はありますか?Facebook C#SDKを使用したいのですが、WP用のVisual Studio Expressを使用しており、PMCを持っていません。このガイドはnugetで見つけましたが、別の方法で行う必要があります。
何か案は?
パッケージマネージャーコンソールを使用する以外にC#ライブラリをインストールする方法はありますか?Facebook C#SDKを使用したいのですが、WP用のVisual Studio Expressを使用しており、PMCを持っていません。このガイドはnugetで見つけましたが、別の方法で行う必要があります。
何か案は?
https://github.com/facebook-csharp-sdk/facebook-csharp-sdk.dll
のNuGetパッケージマネージャーコンソールを使用せずにFacebookC#SDKファイルをダウンロードする方法については、README.mdファイルに記載されています。
Binaries for Facebook C# SDK are only distributed via nuget. For those using older versions of Visual Studio that does not support NuGet Package Manager, please download the command line version of NuGet.exe (http://nuget.codeplex.com/releases/view/58939) and run the following command.
nuget install Facebook
If you would like to get an older version of the the binaries please use the following command.
nuget install Facebook -v 5.4.1
Update: Yo can download version directly from the browser by navigating to http://nuget.org/api/v2/package/Facebook/6.4.0 rename the .nupkg to .zip and extract it using your favorite zip program.
代替のオープンソースIDEsharpDevelopがあります。プロジェクトにパッケージを追加できます。Visual Studioファイルで動作します!
最新バージョンでは、プラグインはVisualStudio用のプラグインがインストールされているかどうかに関係なく独立しています。 SharpDevelopのNuget
PS:VSのプラグインと比較すると、いくつかの制限があります。complexeパッケージは、想定されているすべてのことを実行できません。たとえば、IDEとの対話は失敗する可能性があります。(したがって、SharpDevelopを使用してそのパッケージをインストールすると、MVC 3モデルの生成は機能しません)
VS 2012には、[ツール]->[ライブラリパッケージマネージャー]の下にオプションがあります。
githubからFacebookSDKソースを取得し、ソリューションからsdkプロジェクトへの参照を追加できます。
または、Facebook SDKソリューションからライブラリを構築し、プロジェクトでそれらを参照するだけです。