Skip to content

Commit 2f23b89

Browse files
Mention success in messagebox text
1 parent 1d4decc commit 2f23b89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Vsix/CodeConversion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ await _joinableTaskFactory.RunAsync(async () => {
6868
if ((await GetOptions()).CopyResultToClipboardForSingleDocument) {
6969
await SetClipboardTextOnUiThreadAsync(conversionResult.ConvertedCode ?? conversionResult.GetExceptionsAsString());
7070
await _outputWindow.WriteToOutputWindowAsync(Environment.NewLine + "Conversion result copied to clipboard.");
71-
await VisualStudioInteraction.ShowMessageBoxAsync(_serviceProvider, "Conversion result copied to clipboard.", conversionResult.GetExceptionsAsString(), false);
71+
await VisualStudioInteraction.ShowMessageBoxAsync(_serviceProvider, "Conversion result copied to clipboard.", $"Conversion result copied to clipboard. {conversionResult.GetExceptionsAsString()}", false);
7272
}
7373

7474
}

0 commit comments

Comments
 (0)