Skip to content

Commit f065a26

Browse files
authored
Remove apostrophe from unresolved dependencies msg
1 parent d52613c commit f065a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/observers/InformationMessageObserver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class InformationMessageObserver {
2323
//to do: determine if we need the unresolved dependencies message
2424
let csharpConfig = this.vscode.workspace.getConfiguration('csharp');
2525
if (!csharpConfig.get<boolean>('suppressDotnetRestoreNotification')) {
26-
let message = `There are unresolved dependencies'. Please execute the restore command to continue.`;
26+
let message = `There are unresolved dependencies. Please execute the restore command to continue.`;
2727
return showInformationMessage(this.vscode, message, { title: "Restore", command: "dotnet.restore.all" });
2828
}
2929
}

0 commit comments

Comments
 (0)