Skip to content

Commit 056daa9

Browse files
authored
fix: fix invalid name for default solution (#13)
1 parent 62c2ac3 commit 056daa9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Dependify.Core/Graph/SolutionReferenceNode.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Dependify.Core.Graph;
44

55
public sealed record SolutionReferenceNode : Node
66
{
7-
public bool IsEmpty => this.Id == "<default>";
7+
public bool IsEmpty => this.Id == "$default.sln";
88

99
public SolutionReferenceNode(string? path = default)
1010
{
@@ -17,7 +17,7 @@ public SolutionReferenceNode(string? path = default)
1717
}
1818
else
1919
{
20-
this.Id = "<default>";
20+
this.Id = "$default.sln";
2121
}
2222
}
2323

0 commit comments

Comments
 (0)