“Can not resolve reference: `System.Memory`” or “Could not find `System.Memory`” after update to Visual Studio 2017 version 15.8 Preview

前端 未结 2 1250
慢半拍i
慢半拍i 2021-01-12 00:11

In case it might help anyone else, I\'ll ask and answer this little question about an issue that can appear in Xamarin.Android and Xamarin.iOS projects after an update from

2条回答
  •  不思量自难忘°
    2021-01-12 00:58

    I use VS Entreprise 2017 Version 15.9.1

    To solve the problem I face ( Can not resolve reference: System.Buffers, referenced by System.Memory. Please add a NuGet package or assembly reference for System.Buffers, or remove the reference to System.Memory.), I just install System.Buffers package by this command:

    Install-Package System.Buffers -Version 4.5.0

    https://www.nuget.org/packages/System.Buffers/

提交回复
热议问题