Skip to content

Commit

Permalink
fix: fix invalid name for default solution (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikiforovAll authored Aug 13, 2024
1 parent 62c2ac3 commit 056daa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dependify.Core/Graph/SolutionReferenceNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Dependify.Core.Graph;

public sealed record SolutionReferenceNode : Node
{
public bool IsEmpty => this.Id == "<default>";
public bool IsEmpty => this.Id == "$default.sln";

public SolutionReferenceNode(string? path = default)
{
Expand All @@ -17,7 +17,7 @@ public SolutionReferenceNode(string? path = default)
}
else
{
this.Id = "<default>";
this.Id = "$default.sln";
}
}

Expand Down

0 comments on commit 056daa9

Please sign in to comment.