Browse Source

#3590: Fix error message for duplicate selected assemblies in project export.

pull/3644/head
Siegfried Pammer 1 week ago
parent
commit
c2eb3c056f
  1. 2
      ILSpy/SolutionWriter.cs

2
ILSpy/SolutionWriter.cs

@ -117,7 +117,7 @@ namespace ICSharpCode.ILSpy @@ -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)

Loading…
Cancel
Save