Debugging - Referencing .NET standard 1.4 libraries in Xamarin.Forms Android application (VS 2017)

♀尐吖头ヾ 提交于 2019-12-06 03:43:35

I found solution.

You can add to your .netStandard library csproj file

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
   <DebugType>Full</DebugType>
</PropertyGroup>

This will make debugging work.

The solution proposed by TomasK works, alternatively, you can do this through the GUI using the following steps:

  1. Right click on the Project
  2. Click "Properties"
  3. Open the "Build" Tab
  4. Click "Advanced..."
  5. Set "Debugging information" to "full"
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!