Search code examples
visual-studio-codeomnisharp

Disable "There are unresolved dependencies from..." message


How do we disable the "There are unresolved dependencies from..." message that comes up whenever there are unresolved dependencies?

enter image description here

I would rather not be told this.


Solution

  • In settings.json, add the following:

    {
        "csharp.suppressDotnetRestoreNotification":true
    }
    

    Requires version 1.5-beta6 of C# for Visual Studio Code.

    Here is how to open the settings.json

    enter image description here