diff --git a/ILSpy/SolutionWriter.cs b/ILSpy/SolutionWriter.cs index 65f8e85c4..fbd7b3fbe 100644 --- a/ILSpy/SolutionWriter.cs +++ b/ILSpy/SolutionWriter.cs @@ -117,7 +117,7 @@ namespace ICSharpCode.ILSpy first = false; } - result.WriteLine("- " + assemblies[0].Text + " conflicts with " + string.Join(", ", assemblies.Skip(1))); + result.WriteLine("- " + assemblies[0].Text + " conflicts with " + string.Join(", ", assemblies.Skip(1).Select(a => a.Text))); } if (abort)