-
Notifications
You must be signed in to change notification settings - Fork 14
VisualStudio Output Debug enhance #33
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Hello, have a nice day.
I facing an issue need to support today.
On Avalonia project using new .net version (6,7,8,9,10), the project has property on csproj:
<Nullable>enable</Nullable>Then ViewModel should be:
[ObservableProperty] private string? imageUrl;Or sometime I need to set emptyString to url at start to avoid null sign "?", this should be:
const string EmptyString = "";
[ObservableProperty] private string imageUrl = EmptyString;This way make Output panel of VisualStudio going like this:

VisualStudio Ouput has no filter, so I think we should remove logging on this case:
If URL is null or empty => Ignore
Else => If download image from URL failed => Log.
Thank you for reading and supporting.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request