Closed YuriiNskyi closed 1 year ago
Thanks for the bug report @YuriiNskyi . Unfortunately, Rider doesn't support as many debug features as Visual Studio does.
Some of these limitations I mentioned in a blog post a while ago.
There is however, a parameter that you can apply to either local ValueObject
attributes or the global VogenDefaults
attributes, named debuggerAttributes
. Setting this to Basic
(#)stops the errors in the Rider IDE. Hopefully they'll fix them at some point.
I'll close this bug as there's nothing that can be done in Vogen to fix this, however, if you feel there is a workaround, or if I've just got the wrong end of the stick, then please let me know.
Thanks again.
Describe the bug
Using Rider 2022.3.2, .NET 7, and latest version of Vogen.
Steps to reproduce
Use the following simple VO:
Check the expression
var q = StringValue.From("dfsdf");
inside debugger.You will see:
Expected behaviour
Working DebuggerDisplay. In fact, inside Visual Studio this functionality works as expected.