パッケージのバージョン 'XXX' を見つけることができません:コマンド実行中に 'PushSharp'
PM> Install-Package PushSharp -Version 2.2.1
を、私はこのエラーを取得しています:
Install-Package : Unable to find version '2.2.1' of package 'PushSharp'. At line:1 char:1 + Install-Package PushSharp -Version 2.2.1 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
私の環境では、アップデート5.
のVisual Studio 2013であります注:私のプロジェクトは古く、特定のライブラリは新しいプッシュでは見つからないので、バージョン2.2.1が必要ですPushBroker
のようなシャープバージョン4.x(現在インストールされているPushSharpライブラリです)。
Dim push As PushBroker = New PushBroker() //This is giving error
Type "PushBroker" is not defined.
すべての参照が追加されます。ここに私の輸入品です。
Imports PushSharp
Imports PushSharp.Google
Imports PushSharp.Apple
Imports Newtonsoft
Imports PushSharp.Core
おかげ
私はVS 2015にインストールできました。より高い.NETバージョンが必要なのでしょうか? – weismat