我想在Xamarin iOS應用程序使用Blob存儲,我已經加入了Windows Azure的NuGet包和正在以下錯誤:Xamarin的iOS Azure存儲依賴
.../CSC: Error CS1705: Assembly
Microsoft.WindowsAzure.Storage, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' depends on
System.IO.FileSystem.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' which has a higher version number than referenced assembly `System.IO.FileSystem.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' (CS1705)
我System.IO.FileSystem。 Primitives軟件包在版本4.0.1上,我可以在該項目或4.0.0.0版本中找不到其他項目。我的WindowsAzure.Storage包和System.IO.FileSystem.Primitives包都是最新的。誰能幫忙?
您正在使用哪種版本的Xamarin?我有點記得遇到這個錯誤,但是一旦我更新到Xamarin 4.1,一切都開始工作。 –
好吧,這是我有同樣的版本。請使用最新的Azure存儲庫(7.2)。我最近在Visual Studio上創建了一個與Xamarin 4.1(擁有Xamarin.iOS 9.8)的示例應用程序 - https://developer.xamarin.com/releases/vs/xamarin.vs_4/xamarin.vs_4.1/#Xamarin。 vs4.1.0和Azure存儲客戶端庫7.2 - https://www.nuget.org/packages/WindowsAzure.Storage –
我正在使用Azure Storage 7.2。我無法找到任何對組件System.IO.FileSystem.Primitives v4.0.0的引用,只有4.0.1.0,錯誤狀態是正確的版本。 – Carl