We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d52613c commit f065a26Copy full SHA for f065a26
src/observers/InformationMessageObserver.ts
@@ -23,7 +23,7 @@ export class InformationMessageObserver {
23
//to do: determine if we need the unresolved dependencies message
24
let csharpConfig = this.vscode.workspace.getConfiguration('csharp');
25
if (!csharpConfig.get<boolean>('suppressDotnetRestoreNotification')) {
26
- let message = `There are unresolved dependencies'. Please execute the restore command to continue.`;
+ let message = `There are unresolved dependencies. Please execute the restore command to continue.`;
27
return showInformationMessage(this.vscode, message, { title: "Restore", command: "dotnet.restore.all" });
28
}
29
0 commit comments