Xamarin Forms UWP - Unable To Debug Shared Code

£可爱£侵袭症+ 提交于 2019-11-29 08:24:43

What am I doing wrong to be able to debug the shared code for Xamarin Forms UWP? Android and iOS work.

It's known issue in Visual Studio. Currently, there is a workaround that you could refer.

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

Place the above code in the .NET Standard Library csproj file.

Select the UWP project as startup project and then open Build menu and choose Configuration Manager. There make sure that the .NET Standard library is selected in the Build column.

If that does not help, delete the bin and obj folder from both shared library and UWP project and try again. Sometimes also uninstalling the UWP app from your PC manually helps.

Not sure if it helps, but under Debug,Options,Debugging (General) I would disable the Enable Just My Code option

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!