0

我想在Xamarin.Forms解決方案中構建我的Android項目,並且以下行不斷引發打破構建的異常。Xamarin Forms中的Android項目中的MobileServiceClient錯誤

client = new MobileServiceClient("backend_url"); 

此錯誤顯示爲這樣:

System.InvalidOperationException: A Microsoft Azure Mobile Services assembly for the current platform was not found. Ensure that the current project references both Microsoft.WindowsAzure.Mobile and the following platform-specific assembly: Microsoft.WindowsAzure.Mobile.Ext. 

我看到了另一個thread說要參考手動添加到Android項目,但也有Xamarin開發說一定更新後問題得到了解決(也許不是那麼多)。任何人有一個想法在哪裏解決這個問題。 我已經走進了Android項目>參考>瀏覽>,但無法找到Microsoft.WindowsAzure.Ext

+0

嗨, 您是如何添加Azure項目的?的NuGet?在這種情況下,請確保您已安裝在Android項目中的軟件包 – woelliJ

+0

您需要將Azure移動客戶端NuGet軟件包添加到解決方案中的所有移動應用程序項目 –

+0

是的,我一直假設PCL的NuGet軟件包也被繼承,但是絕對不是這樣。雖然會很好! –

回答

1

DERP

您需要在Azure移動客戶端的NuGet包添加到所有 移動應用程序項目中的解決方案 - Ken Tucker

相關問題