如何在Visual Studio 2017中调试xamarin代码

时间:2018-01-24 13:57:45

标签: .net xamarin uwp

我正在使用Xamarin表单在UWP上创建一个项目,但我无法调试代码?

我正在创建一个Login.xaml页面,设计部分的代码是: - <Button Text="Login" Clicked="OnNextPage" BackgroundColor="Yellow" /> 和Login.xaml.cs文件: - 我试图调用按钮点击事件: - you can see in below image:- 但点击按钮时断点没有击中。

1 个答案:

答案 0 :(得分:1)

这里的问题似乎相同: Xamarin Forms UWP - Unable To Debug Shared Code

尝试@Nico Zhu - MSFT的解决方法,将以下代码放在.NET标准库csproj文件中。

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