C# Xamarin.Forms冲突引用

C# Xamarin.Forms冲突引用,c#,android,xamarin,C#,Android,Xamarin,我试着更新Xamarin.Android.Support.V4和GooglePlayServices,之后开始出现以下内容 Warning 3 Found conflicts between different versions of the same dependent assembly. In Visual Studio, double-click this warning (or select it and press Enter) to fix the conflicts; othe

我试着更新Xamarin.Android.Support.V4和GooglePlayServices,之后开始出现以下内容

Warning 3   Found conflicts between different versions of the same dependent assembly. In Visual Studio, double-click this warning (or select it and press Enter) to fix the conflicts; otherwise, add the following binding redirects to the "runtime" node in the application configuration file: <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"><dependentAssembly><assemblyIdentity name="System.Net.Requests" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" /><bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" /></dependentAssembly></assemblyBinding> C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets   1706    3   Workplay.Universal.Droid
警告3发现同一从属程序集的不同版本之间存在冲突。在Visual Studio中,双击此警告(或选择它并按Enter键)以修复冲突;否则,将以下绑定重定向添加到应用程序配置文件中的“运行时”节点:C:\Program Files(x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets 1706 3 workay.Universal.Droid
我试图做一个回滚,但这个错误现在是持久的,我搜索了类似的错误,但似乎不存在对此的修复,在我更新之前,我没有这个问题

错误显示它在Project.Droid上,但我没有引用System.Net或System.Net.Requests

请帮忙

我尝试将以下内容添加到App.conf

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

编辑: 我最终从头开始创建了这个项目,并复制了我的代码。我花了一段时间,但在“新”项目中,警告似乎已经消失了

编辑2:
当我重新启动VS时,警告再次出现

Jason您收到错误或警告了吗?如果出现错误,请记录您的详细信息。这是VisualStudio发出的警告,请查看此线程,我在该链接中尝试了此线程,但它对我没有帮助