Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
327 views
in Technique[技术] by (71.8m points)

c# - Xamarin Forms UWP - Unable To Debug Shared Code

I've recently started having this issue for the latest version of Xamarin Forms with .NET standard 2.0 as the code sharing strategy.

I am able to place a breakpoint and stop in any code that lives in the UWP project but if I place a breakpoint in the shared DLL code, the breakpoint turns from solid red to a red outlined circle filled in with white. When I put my mouse over the breakpoint, it says the symbols have not been loaded for that location.

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...