You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clone an AspNet Core repo with lots of projects (like aspnet/Mvc).
Open that folder in VS Code and wait for all the messages reading There are unresolved dependencies from 'project'. Please execute the restore command to continue. to appear.
In the latest release that just shipped, we added a csharp.suppressDotnetRestoreNotification which you can set for your project. After installing the update, do the following:
Open your project in Visual Studio Code
Select Preferences -> User Settings
In settings.json add the following:
"csharp.suppressDotnetRestoreNotification": true
Now, close and reopen your project (or relaunch VS Code).
From @ryanbrandenburg on November 11, 2016 22:36
Steps to Reproduce:
There are unresolved dependencies from 'project'. Please execute the restore command to continue.
to appear.dotnet restore
.Copied from original issue: microsoft/vscode#15387
The text was updated successfully, but these errors were encountered: