Visual Studio 2017 breaks in debug mode and displays the message:
Your app has entered a break state, but there is no code to show because all threa
I got similar issue, after spending 2 days we figured out it was due to my application was terminated from out side at the same time I was debugging.
Just had a similar issue in VS2019, I ended up needing to rebuild all in order to resolve the issue despite having manually built many times.
For me, I received the error when my console application was set in Release Mode. Switching to Debug mode fixed the issue.
This type of issue please check property and Accessories. We should return correct field and check value field.
Example:
private string NameField;
public string Name
{
get
{
return NameField;
}
set
{
nameField=value;
}
}
Check for any case of circular dependency while injecting dependencies.
In my case i use INavigationAware which was throw new NotImplementedException(); i just remove those
In you all project update all from nuget.
Clean and rebuild you project.