Skip to content

Commit c2eb3c0

Browse files
#3590: Fix error message for duplicate selected assemblies in project export.
1 parent 5a6ef92 commit c2eb3c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ILSpy/SolutionWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ async Task<AvalonEditTextOutput> CreateSolution(TabPageModel tabPage, List<Loade
117117
first = false;
118118
}
119119

120-
result.WriteLine("- " + assemblies[0].Text + " conflicts with " + string.Join(", ", assemblies.Skip(1)));
120+
result.WriteLine("- " + assemblies[0].Text + " conflicts with " + string.Join(", ", assemblies.Skip(1).Select(a => a.Text)));
121121
}
122122

123123
if (abort)

0 commit comments

Comments
 (0)