Skip to content

Commit 10bb7a1

Browse files
committed
add version number to output pane
1 parent 6b560a6 commit 10bb7a1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/StringResVizPackage.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,7 @@ private async Task HandleOpenSolutionAsync(CancellationToken cancellationToken)
168168
{
169169
await this.JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);
170170

171-
await OutputPane.Instance?.WriteAsync("If you have problems, or suggestions for improvement, report them at https://github.com/mrlacey/StringResourceVisualizer/issues/new ");
172-
await OutputPane.Instance?.WriteAsync("If you like this extension please leave a review at https://marketplace.visualstudio.com/items?itemName=MattLaceyLtd.StringResourceVisualizer#review-details ");
173-
await OutputPane.Instance?.WriteAsync(string.Empty);
171+
await OutputPane.Instance.WriteAsync($"{Vsix.Name} v{Vsix.Version}");
174172

175173
// Get all resource files from the solution
176174
// Do this now, rather than in adornment manager for performance and to avoid thread issues

0 commit comments

Comments
 (0)