Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
'is not null' doesn't work on Linux?
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonh-msft committed Aug 10, 2022
1 parent 68c170e commit f5bcaf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static ReferenceGraph CreateGraph(AnalyzeResponse response)
}

// create nodes for all the references, if non platform.
if (userAsem.AssemblyReferences is not null)
if (userAsem.AssemblyReferences != null)
{
foreach (var reference in userAsem.AssemblyReferences)
{
Expand Down

0 comments on commit f5bcaf2

Please sign in to comment.