1

我在Ubuntu 16.04上使用.netcore 1.0.1。當綁到Google.Cloud.Datastore.V1包添加到我的項目(dotnet add package Goolge.Cloud.Datastore.V1)我得到以下錯誤:在.Net核心上安裝Google.Cloud.Datastore.V1軟件包

Unable to resolve 'Google.Cloud.Datastore.V1' for '.NETStandard,Version=v1.5'. The package mentions it support .NetStandard 1.5. I tried installing it with the -Pre tag but dotnet add package doesn't like the -Pre.

任何人都可以點我在正確的方向?

回答

1

Google.Cloud.Datastore.V1現在只能作爲預發包使用。 dotnet add package Google.Cloud.Datastore.V1嘗試安裝上次發佈的軟件包,因此找不到任何合適的軟件包。

由於現在dotnet add不支持-prerelease標誌,則需要直接指定預發佈版本進行安裝:

dotnet add package Google.Cloud.Datastore.V1 -v 1.0.0-beta08 
+0

謝謝,什麼工作就像一個魅力 –